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

@@ -7,21 +7,20 @@ import keys from './keys.js';
*
* @static
* @since 0.1.0
* @memberOf _
* @category Object
* @param {Object} object The object to inspect.
* @returns {Array} Returns the function names.
* @see _.functionsIn
* @see functionsIn
* @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');
*
* _.functions(new Foo);
* functions(new Foo);
* // => ['a', 'b']
*/
function functions(object) {