mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
12 lines
340 B
JavaScript
12 lines
340 B
JavaScript
|
'use strict';
|
||
|
var $ = require('../internals/export');
|
||
|
var ObjectIterator = require('../internals/object-iterator');
|
||
|
|
||
|
// `Object.iterateKeys` method
|
||
|
// https://github.com/tc39/proposal-object-iteration
|
||
|
$({ target: 'Object', stat: true }, {
|
||
|
iterateKeys: function iterateKeys(object) {
|
||
|
return new ObjectIterator(object, 'keys');
|
||
|
}
|
||
|
});
|