Files
setup-haskell/node_modules/rsvp/lib/rsvp/config.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

21 lines
278 B
JavaScript

import EventTarget from './events';
const config = {
instrument: false
};
EventTarget['mixin'](config);
function configure(name, value) {
if (arguments.length === 2) {
config[name] = value;
} else {
return config[name];
}
}
export {
config,
configure
};