mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:19:30 +08:00
11 lines
233 B
Text
11 lines
233 B
Text
var getNative = require('./_getNative');
|
|
|
|
var defineProperty = (function() {
|
|
try {
|
|
var func = getNative(Object, 'defineProperty');
|
|
func({}, '', {});
|
|
return func;
|
|
} catch (e) {}
|
|
}());
|
|
|
|
module.exports = defineProperty;
|