Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -6,22 +6,21 @@ import keysIn from './keysIn.js';
* enumerable properties of `object`.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Object
* @param {Object} object The object to inspect.
* @returns {Array} Returns the function names.
* @see _.functions
* @see functions
* @example
*
* function Foo() {
* this.a = _.constant('a');
* this.b = _.constant('b');
* this.a = constant('a');
* this.b = constant('b');
* }
*
* Foo.prototype.c = _.constant('c');
* Foo.prototype.c = constant('c');
*
* _.functionsIn(new Foo);
* functionsIn(new Foo);
* // => ['a', 'b', 'c']
*/
function functionsIn(object) {