Tweak _.createCallback and Node.js note in readme. [ci skip]

Former-commit-id: a56737d9afe65f8af83abc9c00687709068ad0e0
This commit is contained in:
John-David Dalton
2013-07-26 19:47:01 -07:00
parent e94ca12f9f
commit 4398fca1bd

View File

@@ -50,7 +50,7 @@ For more information check out these articles, screencasts, and other videos ove
* [_.cloneDeep](http://lodash.com/docs#cloneDeep) for deep cloning arrays and objects
* [_.contains](http://lodash.com/docs#contains) accepts a `fromIndex` argument
* [_.debounce](http://lodash.com/docs#debounce) and [_.throttle](http://lodash.com/docs#throttle) accept an `options` argument for more control
* [_.createCallback](http://lodash.com/docs#createCallback) to customize how callback arguments are handled and support callback shorthands in mixins
* [_.createCallback](http://lodash.com/docs#createCallback) to extend callback support in Lo-Dash methods and mixins
* [_.findIndex](http://lodash.com/docs#findIndex) and [_.findKey](http://lodash.com/docs#findKey) for finding indexes and keys of collections
* [_.forEach](http://lodash.com/docs#forEach) is chainable and supports exiting iteration early
* [_.forIn](http://lodash.com/docs#forIn) for iterating over an objects own and inherited properties
@@ -217,8 +217,7 @@ var _ = require('lodash/dist/lodash.underscore');
**Notes:**
* Dont assign Lo-Dash to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when inside the REPL
* If Lo-Dash is installed globally, run [`npm link lodash`](http://blog.nodejs.org/2011/03/23/npm-1-0-global-vs-local-installation/) in your projects root directory before requiring it
* Node.js 0.10.8-0.10.11 [have](https://github.com/joyent/node/issues/5622) [bugs](https://github.com/joyent/node/issues/5688) that prevent the `lodash` command-line utility from creating minified builds
* Node.js 0.10.8-0.10.11 [have](https://github.com/joyent/node/issues/5622) [bugs](https://github.com/joyent/node/issues/5688) that prevent creating minified builds
In [RingoJS ≤ v0.7.0](http://ringojs.org/):