Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[yaffs-website] / node_modules / uncss / node_modules / lodash / README.md
1 # lodash v4.0.1
2
3 The [lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules.
4
5 Generated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):
6 ```bash
7 $ lodash modularize exports=node -o ./
8 $ lodash -d -o ./lodash.js
9 ```
10
11 ## Installation
12
13 Using npm:
14 ```bash
15 $ {sudo -H} npm i -g npm
16 $ npm i --save lodash
17 ```
18
19 In Node.js:
20 ```js
21 // load the full build
22 var _ = require('lodash');
23 // load the core build
24 var _ = require('lodash/core');
25 // load the fp build
26 var _ = require('lodash/fp');
27 // or a method category
28 var array = require('lodash/array');
29 // or a method (great for smaller builds with browserify/webpack)
30 var chunk = require('lodash/chunk');
31 ```
32
33 See the [package source](https://github.com/lodash/lodash/tree/4.0.1-npm) for more details.
34
35 **Note:**<br>
36 Don’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>
37 Install [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash by default.
38
39 ## Module formats
40
41 Lodash is also available in a variety of other builds & module formats.
42
43  * [lodash](https://www.npmjs.com/package/lodash) & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) packages
44  * [lodash-amd](https://www.npmjs.com/package/lodash-amd)
45  * [lodash-es](https://www.npmjs.com/package/lodash-es)
46
47 ## Further Reading
48
49   * [API Documentation](https://lodash.com/docs)
50   * [Build Differences](https://github.com/lodash/lodash/wiki/Build-Differences)
51   * [Changelog](https://github.com/lodash/lodash/wiki/Changelog)
52   * [Roadmap](https://github.com/lodash/lodash/wiki/Roadmap)
53   * [More Resources](https://github.com/lodash/lodash/wiki/Resources)
54
55 ## Support
56
57 Tested in Chrome 46-47, Firefox 42-43, IE 9-11, Edge 13, Safari 8-9, Node.js 0.10.x, 0.12.x, 4.x, & 5.x, & PhantomJS 1.9.8.
58 Automated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available. Special thanks to [Sauce Labs](https://saucelabs.com/) for providing automated browser testing.