|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
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.