You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
231 B

1 month ago
  1. import getNative from './_getNative.js';
  2. var defineProperty = (function() {
  3. try {
  4. var func = getNative(Object, 'defineProperty');
  5. func({}, '', {});
  6. return func;
  7. } catch (e) {}
  8. }());
  9. export default defineProperty;