Files
lodash/_defineProperty.js
John-David Dalton eb1446def5 Bump to v4.16.3.
2016-10-02 22:00:47 -07:00

12 lines
233 B
JavaScript

var getNative = require('./_getNative');
var defineProperty = (function() {
try {
var func = getNative(Object, 'defineProperty');
func({}, '', {});
return func;
} catch (e) {}
}());
module.exports = defineProperty;