10
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2026-04-06 23:06:58 +00:00
setup-helm/node_modules/rsvp/lib/rsvp/config.js
2022-06-27 14:17:15 -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
};