Files
codeql-action/node_modules/ava/lib/chalk.js
2020-05-13 11:13:27 +01:00

21 lines
326 B
JavaScript

'use strict';
const chalk = require('chalk');
let ctx = null;
exports.get = () => {
if (!ctx) {
throw new Error('Chalk has not yet been configured');
}
return ctx;
};
exports.set = options => {
if (ctx) {
throw new Error('Chalk has already been configured');
}
ctx = new chalk.Instance(options);
return ctx;
};