Sha256: 7c755a998320e769eacf1b6e36715763b1c5b381f0a22fd0a2275d8835b979c6
Contents?: true
Size: 575 Bytes
Versions: 153
Compression:
Stored size: 575 Bytes
Contents
var baseFunctions = require('../internal/baseFunctions'), keysIn = require('./keysIn'); /** * Creates an array of function property names from all enumerable properties, * own and inherited, of `object`. * * @static * @memberOf _ * @alias methods * @category Object * @param {Object} object The object to inspect. * @returns {Array} Returns the new array of property names. * @example * * _.functions(_); * // => ['after', 'ary', 'assign', ...] */ function functions(object) { return baseFunctions(object, keysIn(object)); } module.exports = functions;
Version data entries
153 entries across 80 versions & 8 rubygems