dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/rcfinder/node_modules/lodash
Cyryl Płotnicki 2f946d6200 Add .vscode
2016-09-11 10:29:13 +02:00
..
dist Add .vscode 2016-09-11 10:29:13 +02:00
LICENSE.txt Add .vscode 2016-09-11 10:29:13 +02:00
lodash.js Add .vscode 2016-09-11 10:29:13 +02:00
package.json Add .vscode 2016-09-11 10:29:13 +02:00
README.md Add .vscode 2016-09-11 10:29:13 +02:00

Lo-Dash v2.4.2

A utility library delivering consistency, customization, performance, & extras.

Download

Check out our wiki for details over the differences between builds.

CDN copies are available on cdnjs & jsDelivr. For smaller file sizes, create custom builds with only the features needed.

Love modules? Weve got you covered with lodash-amd, lodash-es6, lodash-node, & npm packages per method.

Dive in

Theres plenty of documentation, unit tests, & benchmarks.
Check out DevDocs as a fast, organized, & searchable interface for our documentation.

The full changelog for this release is available on our wiki.
A list of upcoming features is available on our roadmap.

Installation & usage

In browsers:

<script src="lodash.js"></script>

Using npm:

npm i --save lodash

{sudo} npm i -g lodash
npm ln lodash

In Node.js & Ringo:

var _ = require('lodash');
// or as Underscore
var _ = require('lodash/dist/lodash.underscore');

Notes:

  • Dont assign values to special variable _ when in the REPL
  • If Lo-Dash is installed globally, run npm ln lodash in your projects root directory before requiring it

In Rhino:

load('lodash.js');

In an AMD loader:

require({
  'packages': [
    { 'name': 'lodash', 'location': 'path/to/lodash', 'main': 'lodash' }
  ]
},
['lodash'], function(_) {
  console.log(_.VERSION);
});

Resources

  • Podcasts
  • Posts
  • Videos

A list of other community created podcasts, posts, & videos is available on our wiki.

Features

Support

Tested in Chrome 531, Firefox 225, IE 6-11, Opera 9.25-17, Safari 3-7, Node.js 0.6.21-0.10.22, Narwhal 0.3.2, PhantomJS 1.9.2, RingoJS 0.9, & Rhino 1.7RC5.