public
Description: Framework-independent JavaScript collection methods.
Clone URL: git://github.com/osteele/collections-js.git
Search Repo:
collections-js / README
100644 20 lines (15 sloc) 0.73 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Collections JS
==============
 
Framework-independent JavaScript collection methods, for use in
browser JavaScript and in ActionScript.
 
The Array and String methods use prototype extension; Hash methods use
a proxying wrapper to avoid prototype pollution. The methods with the
same names as the ECMAScript 1.6+ extensions have the same spec as
those; the ones with the same name as prototype extensions have the
same spec as those in the Prototype library; and there's a few odds
and ends such as String#capitalize.
 
The methods are documented in lib/collections.js, and speced (for
further documentation, as well as testing) in spec/*.js.
 
License
=======
Copyright 2007-2008 by Oliver Steele. Available under the MIT License.