Commit Graph

182 Commits

Author SHA1 Message Date
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
Jeremy Ashkenas
71439c35ac Merging in a patch for _ = require('underscore') 2010-11-30 11:59:45 -05:00
Jeremy Ashkenas
a3106a99a6 Merge branch 'master' of https://github.com/josh/underscore 2010-11-30 11:54:01 -05:00
Jeremy Ashkenas
9e3e067f50 Initial draft of _.throttle and _.debounce 2010-11-30 11:41:48 -05:00
Joshua Peek
538fea377e Export _ object as the entire module 2010-11-30 10:09:50 -06:00
Jason Davies
6763b06192 Fix spelling: occurence -> occurrence 2010-11-11 23:25:31 +00:00
Jason Davies
47eb154ccf Preserve backslashes in _.template()
For example, templates containing things like the literal string
`\ribbit` weren't being escaped properly when being compiled. The `\r`
was being interpreted as a carriage return character.

I've added a test for this too, and all the existing tests pass.
2010-11-09 22:59:03 +00:00
Jeremy Ashkenas
44d09ae1c6 Adding header + version number to -min.js 2010-11-07 19:00:25 -05:00
Jeremy Ashkenas
da3edddef9 Merging in Issue #54 2010-11-01 08:44:31 -04:00
Jeremy Ashkenas
a08c3dbd6b Merge branch 'fix_reduceRight_initial_value' of http://github.com/mcmire/underscore 2010-11-01 08:42:19 -04:00
Jeremy Ashkenas
51e327f8e5 Tweaks to Issue #53 2010-11-01 08:40:41 -04:00
Elliot Winkler
f729769d85 Fix reduceRight() so that if you don't pass in an initial value, the last item in the collection is used 2010-10-31 19:03:52 -06:00
Elliot Winkler
c21e7b24c6 Fix reduce() so that if you don't pass in an initial value, the first item in the collection is used 2010-10-31 18:51:30 -06:00
Jeremy Ashkenas
31efd854f8 removing now unused propertyIsEnumerable reference. 2010-10-18 20:45:18 -04:00
Jeremy Ashkenas
8fe19f2023 Underscore 1.1.2 2010-10-15 17:21:41 -04:00
Jeremy Ashkenas
8aeb2832eb Merge branch 'master' of http://github.com/ryantenney/underscore 2010-10-15 17:16:26 -04:00
Jeremy Ashkenas
74d282ccc8 fixing mistakenly-aliased contains ... should refer to include. 2010-10-15 17:15:26 -04:00
Ryan W Tenney
c994dec4c0 adding alias 'unique' to point to 'uniq' 2010-10-10 21:38:46 -04:00
Jeremy Ashkenas
b07c802766 tweaking documentation, license mention 2010-10-07 10:49:10 -04:00
Jeremy Ashkenas
5b4b308c91 Fixing template settings 2010-10-07 10:44:49 -04:00
Ryan W Tenney
18e85b813f slice(0) is interchangable with slice() (in method clone) 2010-10-05 22:47:55 -04:00
Ryan W Tenney
1c6e01173a "Cleaned up"? _.range (or maybe not) 2010-10-05 22:36:15 -04:00
Ryan W Tenney
2dc203332b Changed reduceRight to avoid unnecessarily cloning an array.
`toArray` returns the first argument unmodified if it passes `isArray`.
So if `obj` passes `isArray`, call `slice` on it directly, otherwise use `toArray`.
2010-10-05 21:22:37 -04:00
Ryan W Tenney
2aec074aca Define aliases inline. 2010-10-05 21:10:14 -04:00
Ryan W Tenney
644c5aa2ce Expose wrapper.prototype as _.prototype 2010-10-05 20:32:57 -04:00
Ryan W Tenney
4484002f7e escapeRegExp is no longer used. 2010-10-05 20:30:57 -04:00
Ryan W Tenney
cd7c9ee964 Simplify _.clone a little bit. 2010-10-05 20:28:23 -04:00
Jeremy Ashkenas
faa672ecd9 Underscore 1.1.1 2010-10-05 17:52:36 -04:00
Jeremy Ashkenas
a80550ccd2 Tweaks to the Annotated Underscore. 2010-10-05 17:41:11 -04:00
Jeremy Ashkenas
348147d8fb better default multiline-aware templates 2010-10-05 17:10:44 -04:00
Jeremy Ashkenas
5984be70c1 adding m flag to default templateSettings regexes. 2010-10-05 17:05:03 -04:00
Jeremy Ashkenas
7b25bbef4f Merge branch 'improuvements' of http://github.com/ryantenney/underscore 2010-10-05 16:57:56 -04:00
Jeremy Ashkenas
3f49d1df30 Tweaking Underscore for docco-mentation. 2010-10-05 16:44:56 -04:00
Ryan W Tenney
79600d6e9c Use slice.call internally when working with arguments instead of _.toArray or _.rest 2010-10-03 16:34:38 -04:00
Ryan W Tenney
3505f79566 Replaced .split("'").join("\\'") with .replace(/'/g, "\\'"). http://jsperf.com/split-join-vs-replace 2010-09-27 21:55:49 -04:00
Jeremy Ashkenas
fbd682d9ec Fixing Issue #35. newlines in evaluated code. 2010-09-27 17:35:43 -04:00
Samuel Clay
2068f0819d Fixing _.template() bug where using 'p' as a variable name would override the variable by the same name in _.template(), causing an error. See test case utilities.namespaceCollisionTemplate() for example of broken case. 2010-09-23 12:35:25 -04:00
Ryan W Tenney
7df67bcc4d Revert change of new Array(len) to []. 2010-09-01 16:18:22 -04:00
Ryan W Tenney
19acc63374 Improuvements: removed calls to String(…) (speed), construction of arrays like new Array(len) (standards), replaced arr.push(val) with arr[arr.length] = val (speed). 2010-08-31 17:02:32 -04:00
Ryan W Tenney
116ff91bec Guarantee boolean return value from _.isArguments 2010-08-31 14:53:12 -04:00
Jeremy Ashkenas
7a4ddca64d Revert "slight speedup to _.template"
This reverts commit 7973d7263c.
2010-08-26 02:01:24 -04:00
Jeremy Ashkenas
7973d7263c slight speedup to _.template 2010-08-26 01:02:09 -04:00
Jeremy Ashkenas
fc90d57e36 Underscore.js 1.1.0 2010-08-18 09:26:36 -04:00
Jeremy Ashkenas
b2b5a5390b merging a variant of svieira's fix for preserving whitespace within templates. 2010-07-20 13:37:27 -04:00
Jeremy Ashkenas
ef396a9e13 Aliasing _.contains to _.include 2010-07-15 10:18:11 -04:00
Jeremy Ashkenas
9827f87611 (breaking change) moving _.reduce's method signature to that of ECMA5. _.reduce(obj, iterator, memo). Updated tests and docs. 2010-07-15 09:50:55 -04:00
Nick Stenning
e81a2ec516 Allow _.template functions to be called with no arguments.
This change simply allows templates to be called with no arguments, for a behaviour equivalent to being called with an empty object, {}.
2010-07-14 11:09:05 +01:00
Jeremy Ashkenas
29e2c832bc Underscore 1.0.4, with _.memoize 2010-06-22 09:21:03 -04:00
Jeremy Ashkenas
bce016fc72 Underscore 1.0.3 2010-06-14 15:59:24 -04:00