mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
31 lines
786 B
JavaScript
31 lines
786 B
JavaScript
import baseToPairs from './_baseToPairs.js';
|
|
import getTag from './_getTag.js';
|
|
import mapToArray from './_mapToArray.js';
|
|
import setToPairs from './_setToPairs.js';
|
|
|
|
/** `Object#toString` result references. */
|
|
const mapTag = '[object Map]';
|
|
const setTag = '[object Set]';
|
|
|
|
/**
|
|
* Creates a `_.toPairs` or `_.toPairsIn` function.
|
|
*
|
|
* @private
|
|
* @param {Function} keysFunc The function to get the keys of a given object.
|
|
* @returns {Function} Returns the new pairs function.
|
|
*/
|
|
function createToPairs(keysFunc) {
|
|
return object => {
|
|
const tag = getTag(object);
|
|
if (tag == mapTag) {
|
|
return mapToArray(object);
|
|
}
|
|
if (tag == setTag) {
|
|
return setToPairs(object);
|
|
}
|
|
return baseToPairs(object, keysFunc(object));
|
|
};
|
|
}
|
|
|
|
export default createToPairs;
|