public
Description: Functional is a library for functional programming in JavaScript. It defines the standard higher-order functions such as map, reduce (aka foldl), and select (aka filter). It also defines functions such as curry, rcurry, and partial for partial function application; and compose, guard, and until for function-level programming.
Homepage: http://osteele.com/sources/javascript/functional/
Clone URL: git://github.com/osteele/functional-javascript.git
100644 20 lines (16 sloc) 0.488 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 * Version: 1.0.2 (2007-11-11)
New features:
- Rhino compatibility. (Credit: raganwald)
Optimizations:
- More efficient Array.slice. (Credit: Dean Edwards)
- Memoize Function.lambda. (Credit: henrah)
Packaging changes:
- Added jsmin version.
- Moved to-string.js to separate file.
- Reformatted for new version of osdoc.
 
 * Version: 1.0.1 (2007-07-22)
- Added `equal`.
- Added qualifiers to internal use of `map`.
 
 * Version: 1.0 2007-07-21
- Public release.
 
 * Created: 2007-07-11