mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
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);
|
|
};
|