- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
'use strict';
|
|
var InternalStateModule = require('../internals/internal-state');
|
|
var createIteratorConstructor = require('../internals/iterator-create-constructor');
|
|
var createIterResultObject = require('../internals/create-iter-result-object');
|
|
var hasOwn = require('../internals/has-own-property');
|
|
var objectKeys = require('../internals/object-keys');
|
|
var toObject = require('../internals/to-object');
|
|
|
|
var OBJECT_ITERATOR = 'Object Iterator';
|
|
var setInternalState = InternalStateModule.set;
|
|
var getInternalState = InternalStateModule.getterFor(OBJECT_ITERATOR);
|
|
|
|
module.exports = createIteratorConstructor(function ObjectIterator(source, mode) {
|
|
var object = toObject(source);
|
|
setInternalState(this, {
|
|
type: OBJECT_ITERATOR,
|
|
mode: mode,
|
|
object: object,
|
|
keys: objectKeys(object),
|
|
index: 0
|
|
});
|
|
}, 'Object', function next() {
|
|
var state = getInternalState(this);
|
|
var keys = state.keys;
|
|
while (true) {
|
|
if (keys === null || state.index >= keys.length) {
|
|
state.object = state.keys = null;
|
|
return createIterResultObject(undefined, true);
|
|
}
|
|
var key = keys[state.index++];
|
|
var object = state.object;
|
|
if (!hasOwn(object, key)) continue;
|
|
switch (state.mode) {
|
|
case 'keys': return createIterResultObject(key, false);
|
|
case 'values': return createIterResultObject(object[key], false);
|
|
} /* entries */ return createIterResultObject([key, object[key]], false);
|
|
}
|
|
});
|