version 0.4.2 -- quick patch to rename get() to value() for clarity, and adding jQuery comparisons in the speed tests

This commit is contained in:
Jeremy Ashkenas
2009-11-09 08:28:32 -05:00
parent 7127d404d2
commit f6e67a5bf2
5 changed files with 43 additions and 28 deletions

View File

@@ -28,7 +28,7 @@
if (typeof exports !== 'undefined') _ = exports;
// Current version.
_.VERSION = '0.4.1';
_.VERSION = '0.4.2';
/*------------------------ Collection Functions: ---------------------------*/
@@ -531,7 +531,7 @@
};
// Extracts the result from a wrapped and chained object.
wrapper.prototype.get = function() {
wrapper.prototype.value = function() {
return this._wrapped;
};