Syllabus/themes/piratecare/node_modules/lodash/_defineProperty.js

12 lines
233 B
JavaScript
Raw Normal View History

2020-03-05 04:10:52 +00:00
var getNative = require('./_getNative');
var defineProperty = (function() {
try {
var func = getNative(Object, 'defineProperty');
func({}, '', {});
return func;
} catch (e) {}
}());
module.exports = defineProperty;