mirror of
https://github.com/taixingyiji/openit.git
synced 2025-11-01 10:42:15 +00:00
12 lines
233 B
JavaScript
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;
|