diff --git a/index.html b/index.html
index 237bb9af5..26325fc9d 100644
--- a/index.html
+++ b/index.html
@@ -400,7 +400,7 @@
Downloads (Right-click, and use "Save As")
-
+
Development Version (1.8.0) |
51kb, Uncompressed with Plentiful Comments |
@@ -408,7 +408,7 @@ Downloads (Right-click, and u
Production Version (1.8.0) |
- 5.7kb, Minified and Gzipped
+ 5.7kb, Minified and Gzipped (3x smaller than Lodash ;)
(Source Map)
|
@@ -2182,37 +2182,40 @@ Change Log
— Feb. 19, 2015 — Diff — Docs
-
- Added _.allKeys which returns all the enumerable property
- names on an object.
+ Added _.mapObject, which is similar to _.map, but just
+ for the values in your object. (A real crowd pleaser.)
-
- Reverted a 1.7.0 change where _.extend only copied "own" properties.
+ Added _.allKeys which returns all the enumerable property
+ names on an object.
-
- Added _.mapObject, which is like _.map, but just
- for the values in your object. (A crowd favorite.)
+ Reverted a 1.7.0 change where _.extend only copied "own"
+ properties. Hopefully this will un-break you — if it breaks you
+ again, I apologize.
-
- Added _.extendOwn — a form of _.extend that
+ Added _.extendOwn — a less-useful form of _.extend that
only copies over "own" properties.
-
Added _.findIndex and _.findLastIndex functions,
- along the lines of _.indexOf and _.lastIndexOf.
+ which nicely complement their twin-twins _.indexOf and _.lastIndexOf.
-
Added an _.isError function.
-
Restored the _.unzip function as the inverse of zip.
+ Flip-flopping. I know.
-
- _.result now takes an optional fallback value (or function
- that provides a default value).
+ _.result now takes an optional fallback value (or function
+ that provides the fallback value).
-
- Added _.propertyOf wrapper as a mirror-world version
- of _.property.
+ Added the _.propertyOf function generator as a mirror-world
+ version of _.property.
-
Various and diverse code simplifications, changes for improved