mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
|
var global = require('../internals/global');
|
||
|
|
||
|
module.exports = function (key, value) {
|
||
|
try {
|
||
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
||
|
Object.defineProperty(global, key, { value: value, configurable: true, writable: true });
|
||
|
} catch (error) {
|
||
|
global[key] = value;
|
||
|
} return value;
|
||
|
};
|