main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 2 weeks ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
323 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 | var fails = require('../internals/fails');
|
---|
3 |
|
---|
4 | // Detect IE8's incomplete defineProperty implementation
|
---|
5 | module.exports = !fails(function () {
|
---|
6 | // eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
---|
7 | return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
---|
8 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.