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

@@ -4,11 +4,10 @@ import toInteger from './toInteger.js';
const FUNC_ERROR_TEXT = 'Expected a function';
/**
* The opposite of `_.before`; this method creates a function that invokes
* The opposite of `before`; this method creates a function that invokes
* `func` once it's called `n` or more times.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Function
* @param {number} n The number of calls before `func` is invoked.
@@ -18,11 +17,11 @@ const FUNC_ERROR_TEXT = 'Expected a function';
*
* var saves = ['profile', 'settings'];
*
* var done = _.after(saves.length, function() {
* var done = after(saves.length, function() {
* console.log('done saving!');
* });
*
* _.forEach(saves, function(type) {
* forEach(saves, function(type) {
* asyncSave({ 'type': type, 'complete': done });
* });
* // => Logs 'done saving!' after the two async saves have completed.