mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-25 16:28:22 -05: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;
|