|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
364 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 | var internalObjectKeys = require('../internals/object-keys-internal');
|
|---|
| 3 | var enumBugKeys = require('../internals/enum-bug-keys');
|
|---|
| 4 |
|
|---|
| 5 | // `Object.keys` method
|
|---|
| 6 | // https://tc39.es/ecma262/#sec-object.keys
|
|---|
| 7 | // eslint-disable-next-line es/no-object-keys -- safe
|
|---|
| 8 | module.exports = Object.keys || function keys(O) {
|
|---|
| 9 | return internalObjectKeys(O, enumBugKeys);
|
|---|
| 10 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.