source: imaps-frontend/node_modules/es-define-property/index.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 288 bytes
RevLine 
[d565449]1'use strict';
2
3/** @type {import('.')} */
[79a0317]4var $defineProperty = Object.defineProperty || false;
[d565449]5if ($defineProperty) {
6 try {
7 $defineProperty({}, 'a', { value: 1 });
8 } catch (e) {
9 // IE 8 has a broken defineProperty
10 $defineProperty = false;
11 }
12}
13
14module.exports = $defineProperty;
Note: See TracBrowser for help on using the repository browser.