setup-node/node_modules/rsvp/lib/rsvp/config.js
Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04:00

20 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
};