summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash.omit
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash.omit')
-rw-r--r--tools/eslint/node_modules/lodash.omit/LICENSE.txt22
-rw-r--r--tools/eslint/node_modules/lodash.omit/README.md20
-rw-r--r--tools/eslint/node_modules/lodash.omit/index.js60
-rw-r--r--tools/eslint/node_modules/lodash.omit/package.json130
4 files changed, 0 insertions, 232 deletions
diff --git a/tools/eslint/node_modules/lodash.omit/LICENSE.txt b/tools/eslint/node_modules/lodash.omit/LICENSE.txt
deleted file mode 100644
index 9cd87e5dce..0000000000
--- a/tools/eslint/node_modules/lodash.omit/LICENSE.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
-Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,
-DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/tools/eslint/node_modules/lodash.omit/README.md b/tools/eslint/node_modules/lodash.omit/README.md
deleted file mode 100644
index 49990faf99..0000000000
--- a/tools/eslint/node_modules/lodash.omit/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# lodash.omit v3.1.0
-
-The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.omit` exported as a [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) module.
-
-## Installation
-
-Using npm:
-
-```bash
-$ {sudo -H} npm i -g npm
-$ npm i --save lodash.omit
-```
-
-In Node.js/io.js:
-
-```js
-var omit = require('lodash.omit');
-```
-
-See the [documentation](https://lodash.com/docs#omit) or [package source](https://github.com/lodash/lodash/blob/3.1.0-npm-packages/lodash.omit) for more details.
diff --git a/tools/eslint/node_modules/lodash.omit/index.js b/tools/eslint/node_modules/lodash.omit/index.js
deleted file mode 100644
index bcf4d2232d..0000000000
--- a/tools/eslint/node_modules/lodash.omit/index.js
+++ /dev/null
@@ -1,60 +0,0 @@
-/**
- * lodash 3.1.0 (Custom Build) <https://lodash.com/>
- * Build: `lodash modern modularize exports="npm" -o ./`
- * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
- * Based on Underscore.js 1.8.2 <http://underscorejs.org/LICENSE>
- * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
- * Available under MIT license <https://lodash.com/license>
- */
-var arrayMap = require('lodash._arraymap'),
- baseDifference = require('lodash._basedifference'),
- baseFlatten = require('lodash._baseflatten'),
- bindCallback = require('lodash._bindcallback'),
- pickByArray = require('lodash._pickbyarray'),
- pickByCallback = require('lodash._pickbycallback'),
- keysIn = require('lodash.keysin'),
- restParam = require('lodash.restparam');
-
-/**
- * The opposite of `_.pick`; this method creates an object composed of the
- * own and inherited enumerable properties of `object` that are not omitted.
- * Property names may be specified as individual arguments or as arrays of
- * property names. If `predicate` is provided it is invoked for each property
- * of `object` omitting the properties `predicate` returns truthy for. The
- * predicate is bound to `thisArg` and invoked with three arguments:
- * (value, key, object).
- *
- * @static
- * @memberOf _
- * @category Object
- * @param {Object} object The source object.
- * @param {Function|...(string|string[])} [predicate] The function invoked per
- * iteration or property names to omit, specified as individual property
- * names or arrays of property names.
- * @param {*} [thisArg] The `this` binding of `predicate`.
- * @returns {Object} Returns the new object.
- * @example
- *
- * var object = { 'user': 'fred', 'age': 40 };
- *
- * _.omit(object, 'age');
- * // => { 'user': 'fred' }
- *
- * _.omit(object, _.isNumber);
- * // => { 'user': 'fred' }
- */
-var omit = restParam(function(object, props) {
- if (object == null) {
- return {};
- }
- if (typeof props[0] != 'function') {
- var props = arrayMap(baseFlatten(props), String);
- return pickByArray(object, baseDifference(keysIn(object), props));
- }
- var predicate = bindCallback(props[0], props[1], 3);
- return pickByCallback(object, function(value, key, object) {
- return !predicate(value, key, object);
- });
-});
-
-module.exports = omit;
diff --git a/tools/eslint/node_modules/lodash.omit/package.json b/tools/eslint/node_modules/lodash.omit/package.json
deleted file mode 100644
index 388cbc2871..0000000000
--- a/tools/eslint/node_modules/lodash.omit/package.json
+++ /dev/null
@@ -1,130 +0,0 @@
-{
- "_args": [
- [
- "lodash.omit@^3.1.0",
- "/Users/mzasso/git/forks/node/node_modules/eslint"
- ]
- ],
- "_from": "lodash.omit@>=3.1.0 <4.0.0",
- "_id": "lodash.omit@3.1.0",
- "_inCache": true,
- "_installable": true,
- "_location": "/eslint/lodash.omit",
- "_nodeVersion": "0.12.0",
- "_npmUser": {
- "email": "john.david.dalton@gmail.com",
- "name": "jdalton"
- },
- "_npmVersion": "2.7.3",
- "_phantomChildren": {},
- "_requested": {
- "name": "lodash.omit",
- "raw": "lodash.omit@^3.1.0",
- "rawSpec": "^3.1.0",
- "scope": null,
- "spec": ">=3.1.0 <4.0.0",
- "type": "range"
- },
- "_requiredBy": [
- "/eslint"
- ],
- "_resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz",
- "_shasum": "897fe382e6413d9ac97c61f78ed1e057a00af9f3",
- "_shrinkwrap": null,
- "_spec": "lodash.omit@^3.1.0",
- "_where": "/Users/mzasso/git/forks/node/node_modules/eslint",
- "author": {
- "email": "john.david.dalton@gmail.com",
- "name": "John-David Dalton",
- "url": "http://allyoucanleet.com/"
- },
- "bugs": {
- "url": "https://github.com/lodash/lodash/issues"
- },
- "contributors": [
- {
- "name": "John-David Dalton",
- "email": "john.david.dalton@gmail.com",
- "url": "http://allyoucanleet.com/"
- },
- {
- "name": "Benjamin Tan",
- "email": "demoneaux@gmail.com",
- "url": "https://d10.github.io/"
- },
- {
- "name": "Blaine Bublitz",
- "email": "blaine@iceddev.com",
- "url": "http://www.iceddev.com/"
- },
- {
- "name": "Kit Cambridge",
- "email": "github@kitcambridge.be",
- "url": "http://kitcambridge.be/"
- },
- {
- "name": "Mathias Bynens",
- "email": "mathias@qiwi.be",
- "url": "https://mathiasbynens.be/"
- }
- ],
- "dependencies": {
- "lodash._arraymap": "^3.0.0",
- "lodash._basedifference": "^3.0.0",
- "lodash._baseflatten": "^3.0.0",
- "lodash._bindcallback": "^3.0.0",
- "lodash._pickbyarray": "^3.0.0",
- "lodash._pickbycallback": "^3.0.0",
- "lodash.keysin": "^3.0.0",
- "lodash.restparam": "^3.0.0"
- },
- "description": "The modern build of lodash’s `_.omit` as a module.",
- "devDependencies": {},
- "directories": {},
- "dist": {
- "shasum": "897fe382e6413d9ac97c61f78ed1e057a00af9f3",
- "tarball": "http://registry.npmjs.org/lodash.omit/-/lodash.omit-3.1.0.tgz"
- },
- "homepage": "https://lodash.com/",
- "icon": "https://lodash.com/icon.svg",
- "keywords": [
- "lodash",
- "lodash-modularized",
- "stdlib",
- "util"
- ],
- "license": "MIT",
- "maintainers": [
- {
- "name": "jdalton",
- "email": "john.david.dalton@gmail.com"
- },
- {
- "name": "kitcambridge",
- "email": "github@kitcambridge.be"
- },
- {
- "name": "mathias",
- "email": "mathias@qiwi.be"
- },
- {
- "name": "phated",
- "email": "blaine@iceddev.com"
- },
- {
- "name": "d10",
- "email": "demoneaux@gmail.com"
- }
- ],
- "name": "lodash.omit",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/lodash/lodash.git"
- },
- "scripts": {
- "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
- },
- "version": "3.1.0"
-}