mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
'use strict';
|
|
require('../../modules/es.object.get-own-property-names');
|
|
var path = require('../../internals/path');
|
|
|
|
var Object = path.Object;
|
|
|
|
module.exports = function getOwnPropertyNames(it) {
|
|
return Object.getOwnPropertyNames(it);
|
|
};
|