{"_id":"@snyk/lodash","_rev":"159361","name":"@snyk/lodash","description":"[Site](https://lodash.com/) | [Docs](https://lodash.com/docs) | [FP Guide](https://github.com/lodash/lodash/wiki/FP-Guide) | [Contributing](https://github.com/lodash/lodash/blob/master/.github/CONTRIBUTING.md) | [Wiki](https://github.com/lodash/lodash/wik","dist-tags":{"latest":"4.17.15-patch"},"maintainers":[{"name":"snyk-admin","email":""}],"time":{"modified":"2021-06-03T11:38:52.000Z","created":"2020-04-29T14:05:20.167Z","4.17.15-patch":"2020-04-29T14:05:20.167Z"},"users":{},"versions":{"4.17.15-patch":{"name":"@snyk/lodash","version":"4.17.15-patch","license":"MIT","private":false,"main":"lodash.js","engines":{"node":">=4.0.0"},"scripts":{"build":"npm run build:main && npm run build:fp","build:fp":"node lib/fp/build-dist.js","build:fp-modules":"node lib/fp/build-modules.js","build:main":"node lib/main/build-dist.js","build:main-modules":"node lib/main/build-modules.js","doc":"node lib/main/build-doc github && npm run test:doc","doc:fp":"node lib/fp/build-doc","doc:site":"node lib/main/build-doc site","doc:sitehtml":"optional-dev-dependency marky-markdown@^9.0.1 && npm run doc:site && node lib/main/build-site","pretest":"npm run build","style":"npm run style:main && npm run style:fp && npm run style:perf && npm run style:test","style:fp":"jscs fp/*.js lib/**/*.js","style:main":"jscs lodash.js","style:perf":"jscs perf/*.js perf/**/*.js","style:test":"jscs test/*.js test/**/*.js","test":"npm run test:main && npm run test:fp","test:doc":"markdown-doctest doc/*.md","test:fp":"node test/test-fp","test:main":"node test/test","validate":"npm run style && npm run test"},"devDependencies":{"async":"^2.6.3","benchmark":"^2.1.3","chalk":"^1.1.3","cheerio":"^0.22.0","codecov.io":"~0.1.6","coveralls":"^2.11.15","curl-amd":"~0.8.12","docdown":"~0.7.2","dojo":"^1.15.0","ecstatic":"^2.2.2","fs-extra":"~1.0.0","glob":"^7.1.4","istanbul":"0.4.5","jquery":"^3.4.1","jscs":"^3.0.7","lodash":"4.17.14","lodash-doc-globals":"^0.1.1","markdown-doctest":"^0.9.1","optional-dev-dependency":"^2.0.0","platform":"^1.3.3","qunit-extras":"^3.0.0","qunitjs":"^2.1.0","request":"^2.88.0","requirejs":"^2.3.6","sauce-tunnel":"^2.5.0","uglify-js":"2.7.5","webpack":"^1.14.0"},"greenkeeper":{"ignore":["lodash"]},"gitHead":"5b60b7ebe3dd5756f078d3623a8f3a851aaa8e66","description":"[Site](https://lodash.com/) | [Docs](https://lodash.com/docs) | [FP Guide](https://github.com/lodash/lodash/wiki/FP-Guide) | [Contributing](https://github.com/lodash/lodash/blob/master/.github/CONTRIBUTING.md) | [Wiki](https://github.com/lodash/lodash/wik","_id":"@snyk/lodash@4.17.15-patch","_nodeVersion":"12.13.1","_npmVersion":"6.12.1","dist":{"shasum":"fb61af14b75d10a20015b40af5d0423944af89dc","size":839085,"noattachment":false,"key":"/@snyk/lodash/-/@snyk/lodash-4.17.15-patch.tgz","tarball":"http://registry.cnpm.dingdandao.com/@snyk/lodash/download/@snyk/lodash-4.17.15-patch.tgz"},"maintainers":[{"name":"snyk-admin","email":""}],"_npmUser":{"name":"snyk-admin","email":"npmjs+snyk-admin@snyk.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/lodash_4.17.15-patch_1588169119885_0.2715037621871388"},"_hasShrinkwrap":false,"publish_time":1588169120167,"_cnpm_publish_time":1588169120167}},"readme":"# lodash v4.17.15\n\n[Site](https://lodash.com/) |\n[Docs](https://lodash.com/docs) |\n[FP Guide](https://github.com/lodash/lodash/wiki/FP-Guide) |\n[Contributing](https://github.com/lodash/lodash/blob/master/.github/CONTRIBUTING.md) |\n[Wiki](https://github.com/lodash/lodash/wiki \"Changelog, Roadmap, etc.\") |\n[Code of Conduct](https://js.foundation/conduct/) |\n[Twitter](https://twitter.com/bestiejs) |\n[Chat](https://gitter.im/lodash/lodash)\n\nThe [Lodash](https://lodash.com/) library exported as a [UMD](https://github.com/umdjs/umd) module.\n\nGenerated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):\n```shell\n$ npm run build\n$ lodash -o ./dist/lodash.js\n$ lodash core -o ./dist/lodash.core.js\n```\n\n## Download\n\n * [Core build](https://raw.githubusercontent.com/lodash/lodash/4.17.15/dist/lodash.core.js) ([~4 kB gzipped](https://raw.githubusercontent.com/lodash/lodash/4.17.15/dist/lodash.core.min.js))\n * [Full build](https://raw.githubusercontent.com/lodash/lodash/4.17.15/dist/lodash.js) ([~24 kB gzipped](https://raw.githubusercontent.com/lodash/lodash/4.17.15/dist/lodash.min.js))\n * [CDN copies](https://www.jsdelivr.com/projects/lodash)\n\nLodash is released under the [MIT license](https://raw.githubusercontent.com/lodash/lodash/4.17.15/LICENSE) & supports modern environments.<br>\nReview the [build differences](https://github.com/lodash/lodash/wiki/build-differences) & pick one that’s right for you.\n\n## Installation\n\nIn a browser:\n```html\n<script src=\"lodash.js\"></script>\n```\n\nUsing npm:\n```shell\n$ npm i -g npm\n$ npm i --save lodash\n```\n\nIn Node.js:\n```js\n// Load the full build.\nvar _ = require('lodash');\n// Load the core build.\nvar _ = require('lodash/core');\n// Load the FP build for immutable auto-curried iteratee-first data-last methods.\nvar fp = require('lodash/fp');\n\n// Load method categories.\nvar array = require('lodash/array');\nvar object = require('lodash/fp/object');\n\n// Cherry-pick methods for smaller browserify/rollup/webpack bundles.\nvar at = require('lodash/at');\nvar curryN = require('lodash/fp/curryN');\n```\n\n**Note:**<br>\nInstall [n_](https://www.npmjs.com/package/n_) for Lodash use in the Node.js < 6 REPL.\n\n## Why Lodash?\n\nLodash makes JavaScript easier by taking the hassle out of working with arrays,<br>\nnumbers, objects, strings, etc. Lodash’s modular methods are great for:\n\n * Iterating arrays, objects, & strings\n * Manipulating & testing values\n * Creating composite functions\n\n## Module Formats\n\nLodash is available in a [variety of builds](https://lodash.com/custom-builds) & module formats.\n\n * [lodash](https://www.npmjs.com/package/lodash) & [per method packages](https://www.npmjs.com/browse/keyword/lodash-modularized)\n * [lodash-es](https://www.npmjs.com/package/lodash-es), [babel-plugin-lodash](https://www.npmjs.com/package/babel-plugin-lodash), & [lodash-webpack-plugin](https://www.npmjs.com/package/lodash-webpack-plugin)\n * [lodash/fp](https://github.com/lodash/lodash/tree/npm/fp)\n * [lodash-amd](https://www.npmjs.com/package/lodash-amd)\n","_attachments":{},"license":"MIT"}