Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/_createToPairs.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

30 lines (27 sloc)
789 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var baseToPairs = require('./_baseToPairs'), | |
getTag = require('./_getTag'), | |
mapToArray = require('./_mapToArray'), | |
setToPairs = require('./_setToPairs'); | |
/** `Object#toString` result references. */ | |
var mapTag = '[object Map]', | |
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 function(object) { | |
var tag = getTag(object); | |
if (tag == mapTag) { | |
return mapToArray(object); | |
} | |
if (tag == setTag) { | |
return setToPairs(object); | |
} | |
return baseToPairs(object, keysFunc(object)); | |
}; | |
} | |
module.exports = createToPairs; |