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/_getAllKeysIn.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

17 lines (15 sloc)
488 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 baseGetAllKeys = require('./_baseGetAllKeys'), | |
getSymbolsIn = require('./_getSymbolsIn'), | |
keysIn = require('./keysIn'); | |
/** | |
* Creates an array of own and inherited enumerable property names and | |
* symbols of `object`. | |
* | |
* @private | |
* @param {Object} object The object to query. | |
* @returns {Array} Returns the array of property names and symbols. | |
*/ | |
function getAllKeysIn(object) { | |
return baseGetAllKeys(object, keysIn, getSymbolsIn); | |
} | |
module.exports = getAllKeysIn; |