payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
65 lines (64 loc) • 3.75 kB
JavaScript
// @ts-strict-ignore
/*
* Copyright (c) 2014, Hugh Kennedy
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* 3. Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ /*
* Copyright (c) 2020, Feross Aboukhadijeh <https://feross.org>
* Reference: https://www.npmjs.com/package/is-buffer
* All rights reserved.
*/ function isBuffer(obj) {
return obj != null && obj.constructor != null && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj);
}
export const unflatten = (target, opts)=>{
opts = opts || {};
const delimiter = opts.delimiter || '.';
const overwrite = opts.overwrite || false;
const recursive = opts.recursive || false;
const result = {};
const isbuffer = isBuffer(target);
if (isbuffer || Object.prototype.toString.call(target) !== '[object Object]') {
return target;
}
// safely ensure that the key is an integer.
const getkey = (key)=>{
const parsedKey = Number(key);
return isNaN(parsedKey) || key.indexOf('.') !== -1 || opts.object ? key : parsedKey;
};
const sortedKeys = Object.keys(target).sort((keyA, keyB)=>keyA.length - keyB.length);
sortedKeys.forEach((key)=>{
const split = key.split(delimiter);
let key1 = getkey(split.shift());
let key2 = getkey(split[0]);
let recipient = result;
while(key2 !== undefined){
if (key1 === '__proto__') {
return;
}
const type = Object.prototype.toString.call(recipient[key1]);
const isobject = type === '[object Object]' || type === '[object Array]';
// do not write over falsey, non-undefined values if overwrite is false
if (!overwrite && !isobject && typeof recipient[key1] !== 'undefined') {
return;
}
if (overwrite && !isobject || !overwrite && recipient[key1] == null) {
recipient[key1] = typeof key2 === 'number' && !opts.object ? [] : {};
}
recipient = recipient[key1];
if (split.length > 0) {
key1 = getkey(split.shift());
key2 = getkey(split[0]);
}
}
// unflatten again for 'messy objects'
recipient[key1] = recursive ? unflatten(target[key], opts) : target[key];
});
return result;
};
//# sourceMappingURL=unflatten.js.map