Files
lodash/_defineProperty.js
2017-01-08 23:37:20 -08:00

12 lines
232 B
JavaScript

import getNative from './_getNative.js';
const defineProperty = ((() => {
try {
const func = getNative(Object, 'defineProperty');
func({}, '', {});
return func;
} catch (e) {}
})());
export default defineProperty;