Files
codeql-action/node_modules/ava/lib/worker/options.cjs
2022-02-01 18:56:42 +00:00

18 lines
278 B
JavaScript

'use strict';
let options = null;
exports.get = () => {
if (!options) {
throw new Error('Options have not yet been set');
}
return options;
};
exports.set = newOptions => {
if (options) {
throw new Error('Options have already been set');
}
options = newOptions;
};