Add _.consume and _.isNative to the features section of readme. [ci skip]

This commit is contained in:
John-David Dalton
2014-08-24 13:54:09 -07:00
parent 3bfb9d65f4
commit d9be6f8a9a

View File

@@ -74,6 +74,7 @@ Dont assign values to the [special variable](http://nodejs.org/api/repl.html#
* [_.chunk](http://lodash.com/docs#chunk) for splitting an array into chunks of a given size
* [_.clone](http://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects
* [_.cloneDeep](http://lodash.com/docs#cloneDeep) for deep cloning arrays & objects
* [_.consume](http://lodash.com/docs#consume) to complement [_.consumeRight](http://lodash.com/docs#consumeRight) (a.k.a `_.compose`)
* [_.contains](http://lodash.com/docs#contains) accepts a `fromIndex`
* [_.create](http://lodash.com/docs#create) for easier object inheritance
* [_.curry](http://lodash.com/docs#curry) & [_.curryRight](http://lodash.com/docs#curryRight) for creating [curried](http://hughfdjackson.com/javascript/why-curry-helps/) functions
@@ -83,6 +84,7 @@ Dont assign values to the [special variable](http://nodejs.org/api/repl.html#
* [_.forIn](http://lodash.com/docs#forIn) for iterating all enumerable properties
* [_.forOwn](http://lodash.com/docs#forOwn) for iterating own properties
* [_.isError](http://lodash.com/docs#isError) to check for error objects
* [_.isNative](http://lodash.com/docs#isNative) to check for native functions
* [_.isPlainObject](http://lodash.com/docs#isPlainObject) to check for objects created by `Object`
* [_.keysIn](http://lodash.com/docs#keysIn) & [_.valuesIn](http://lodash.com/docs#valuesIn) for getting keys and values of all enumerable properties
* [_.mapValues](http://lodash.com/docs#mapValues) for [mapping](http://lodash.com/docs#map) values to an object