TreasureTrails/node_modules/lodash/_defineProperty.js

12 lines
233 B
JavaScript
Raw Permalink Normal View History

2026-03-18 09:02:21 -05:00
var getNative = require('./_getNative');
var defineProperty = (function() {
try {
var func = getNative(Object, 'defineProperty');
func({}, '', {});
return func;
} catch (e) {}
}());
module.exports = defineProperty;