Files
Henry Whitaker ea5808047f Tweaked gitignore
gitignore removed all composer and npm files, so automated builds would fail
2020-04-12 21:24:03 +01:00

23 lines
476 B
JavaScript
Vendored

'use strict';
var oDP = Object.defineProperty;
try {
oDP({}, 'a', { value: 1 });
} catch (e) {
// IE 8
oDP = null;
}
module.exports = function defineProperty(O, P, Desc) {
if (oDP) {
return oDP(O, P, Desc);
}
if ((Desc.enumerable && Desc.configurable && Desc.writable) || !(P in O)) {
O[P] = Desc.value; // eslint-disable-line no-param-reassign
return O;
}
throw new SyntaxError('helper does not yet support this configuration');
};
module.exports.oDP = oDP;