Andrei
f8a4b78a86
Adding groupBy.
2011-05-05 14:00:40 -04:00
Jeremy Ashkenas
b617615819
Underscore.js 1.1.6
2011-04-18 09:08:52 -04:00
Jeremy Ashkenas
6f25ccae31
michaelficarra's proposed tweak to _.after
2011-04-15 18:01:53 -04:00
Jeremy Ashkenas
ea44179d81
Issue #123 . _.extend shouldn't copy keys for undefined values.
2011-04-15 17:46:16 -04:00
Jeremy Ashkenas
bf214d2c8d
stricter ECMA5 compliance. _.every now requires an iterator to be passed. #160
2011-04-15 17:17:54 -04:00
Jeremy Ashkenas
3df562f07e
tweaking invoke implementation
2011-04-15 17:00:37 -04:00
Jeremy Ashkenas
8f67aa3f18
_.barrier -> _.after, switch the order of arguments ... fix test formatting.
2011-04-15 16:17:58 -04:00
Sam Gentle
217a6a6a63
_.barrier + tests
2011-04-14 07:19:05 +10:00
Samuel Clay
1fc7d4b049
Revert "Adding _.count to count truthy values in an iterator. _.count([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; }) = 3"
...
This reverts commit c8e3c04076 .
Conflicts:
underscore.js
2011-04-06 09:03:40 -04:00
Samuel Clay
5457522582
Speeding up a few methods which assign a default identity function for missing/optional iterators. Noticeable difference.
2011-04-05 18:11:20 -04:00
Samuel Clay
c8e3c04076
Adding _.count to count truthy values in an iterator. _.count([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; }) = 3
2011-04-05 18:09:47 -04:00
aseemk
3f512c2495
Add support for _.invoke() to take function reference.
2011-03-25 12:35:11 -07:00
Jeremy Ashkenas
6d4b76705d
we're reserving nativeBind ... we should be actually using it.
2011-03-22 15:48:09 -04:00
Jeremy Ashkenas
2498bccb50
changing order of operations to force an errror when _.bind -ing null or undefined values.
2011-03-22 10:44:07 -04:00
Jeremy Ashkenas
c5ba702542
Underscore.js 1.1.5
2011-03-20 20:20:08 -04:00
Jeremy Ashkenas
39119065dc
Adding _.once ... Issue #121
2011-03-20 19:32:20 -04:00
Jeremy Ashkenas
52916aad87
Merge branch 'master' of https://github.com/TrevorBurnham/underscore
2011-03-20 19:26:52 -04:00
Kit Goncharov
48abcd84c5
Issue #149 : _.keys should throw a TypeError for non-objects.
2011-03-20 10:08:32 -06:00
Kit Goncharov
4869b4c6ca
Issue #150 : _.bind should allow binding functions to falsy values.
2011-03-20 09:36:44 -06:00
Jeremy Ashkenas
513d322525
Merging in the native bind branch.
2011-02-28 10:54:12 -05:00
Adam Craven
095400d094
Use existing alias for function bind.
2011-02-22 13:43:39 +01:00
Adam Craven
b65d647de8
updated bind method to stop un-needed variable assignment when using native method.
2011-02-20 22:24:29 +01:00
Adam Craven
468160204d
Updated 'bind' documentation to reflect native support.
2011-02-20 21:19:46 +01:00
Adam Craven
ebde2daa4a
Updated 'bind' documentation to reflect native support.
2011-02-20 21:07:14 +01:00
Adam Craven
9c9731e08e
Added support for ECMAScript 5 native bind method if available. Additional unit test to cover multiple argument binds.
2011-02-20 21:03:52 +01:00
Trevor Burnham
b39205b359
Adding _.once, for running a function once
2011-02-08 15:28:45 -05:00
Jeremy Ashkenas
226b7d9344
Adding _.defaults, Issue #106
2011-02-01 21:19:58 -05:00
Samuel Clay
7aaf3616df
Issue #107 : Fixing issue with _.first([1,2,3], 0) returning first element instead of empty array.
2011-01-27 11:38:06 -05:00
Jeremy Ashkenas
2f369f8eca
Fixing #95 ... Maloptimization of _.keys for sparse arrays.
2011-01-18 16:34:33 -05:00
Jeremy Ashkenas
49787c212d
merging lifesinger's clarified range.
2011-01-18 15:48:13 -05:00
lifesinger
6c2693a5ea
improve arguments overloading in _.range method
2011-01-18 10:01:36 +08:00
lifesinger
840f19c102
bug fix for _.memoize when key is derived from prototype
2011-01-17 14:57:02 +08:00
lifesinger
52f66a807c
remove unused code and avoid variable redeclaration
2011-01-17 14:48:43 +08:00
Jeremy Ashkenas
f03d5fa57c
Underscore 1.1.4 is on the books.
2011-01-09 14:03:45 -05:00
Jeremy Ashkenas
fad002de53
trying to avoid obj.callee (strict mode)
2010-12-21 00:26:25 -05:00
Jeremy Ashkenas
b3a373a716
safer but slower toArray fallback, in light of .callee throwing in strict mode.
2010-12-20 17:39:57 -05:00
Jeremy Ashkenas
422d35438c
updating _.isNaN comment doc.
2010-12-20 16:52:24 -05:00
Jeremy Ashkenas
2dff99d518
switching to canonical isNaN
2010-12-20 16:42:54 -05:00
Jeremy Ashkenas
d2d6cfe667
Rework of #68 , to use a flag to indexOf, instead of a separate function.
2010-12-17 10:57:12 -05:00
Jeremy Ashkenas
8c2570b0ba
Issue #68 . Adding _.sortedIndexOf
2010-12-17 10:35:53 -05:00
Jeremy Ashkenas
3a113d2d88
Issue #79 . Correctly setting 'this' in '_.wrap'
2010-12-13 16:25:55 -05:00
Ryan W Tenney
8f86e3eb67
Improve compliance with Array methods in ES5 when passed a null value. (ES5 Array methods treat null like [])
2010-12-06 23:30:43 -05:00
Ryan W Tenney
ebe0cc6f45
Access the _wrapped property directly instead of calling value() when unwrapping wrapped objects in isEqual()
2010-12-03 14:34:25 -05:00
Jeremy Ashkenas
e63f44f798
period.
2010-12-03 10:03:50 -05:00
Jeremy Ashkenas
70d760f4f5
merging in jasondavies isEqual patch for wrapped objects.
2010-12-03 10:03:30 -05:00
Jason Davies
2120b27b22
Fix _.isEquals() for wrapped objects
...
This caught me out when writing some unit tests that use _.isEquals().
They were all passing even though I knew they shouldn't be, and I
realised I was checking equality with a wrapped object that I'd
forgotten to unwrap.
2010-12-03 13:01:58 +00:00
Jeremy Ashkenas
c714175cf1
Underscore.js 1.1.3
2010-12-01 12:49:45 -05:00
Jeremy Ashkenas
2d06e1d526
Issue #70 -- implementing each, find, all, any, etc. without the use of a try/catch/throw. Minor speedup + avoids destroying the stack trace.
2010-12-01 11:08:34 -05:00
Jeremy Ashkenas
6b8bb0cacd
Better Underscore isType checking, in the presence of Internet Explorer host objects, which are a bit touchy.
2010-12-01 10:25:55 -05:00
Jeremy Ashkenas
c86a2fe3a8
Safer CommonJS detection... module.exports must be defined.
2010-12-01 09:44:11 -05:00