Rename _.lateBind to _.bindKey. [closes #114]

Former-commit-id: 971e56cb86b5298ba2a9f92365f0463665d27230
This commit is contained in:
John-David Dalton
2012-11-17 00:06:55 -08:00
parent f2f980928b
commit 25e1eb3ce9
7 changed files with 192 additions and 192 deletions

View File

@@ -69,6 +69,7 @@
'assign': ['isArguments'],
'bind': ['isFunction', 'isObject'],
'bindAll': ['bind', 'functions'],
'bindKey': ['isFunction', 'isObject'],
'chain': ['mixin'],
'clone': ['assign', 'forEach', 'forOwn', 'isArguments', 'isObject', 'isPlainObject'],
'compact': [],
@@ -118,7 +119,6 @@
'keys': ['forOwn', 'isArguments', 'isObject'],
'last': [],
'lastIndexOf': [],
'lateBind': ['isFunction', 'isObject'],
'map': ['forEach', 'isArray'],
'max': ['forEach', 'isArray', 'isString'],
'memoize': [],
@@ -236,10 +236,10 @@
/** List of methods used by Underscore */
var underscoreMethods = _.without.apply(_, [allMethods].concat([
'bindKey',
'forIn',
'forOwn',
'isPlainObject',
'lateBind',
'merge',
'partial'
]));