aboutsummaryrefslogtreecommitdiff
path: root/node_modules/lodash._isnative
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/lodash._isnative
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/lodash._isnative')
-rw-r--r--node_modules/lodash._isnative/LICENSE.txt22
-rw-r--r--node_modules/lodash._isnative/README.md15
-rw-r--r--node_modules/lodash._isnative/index.js34
-rw-r--r--node_modules/lodash._isnative/package.json101
4 files changed, 172 insertions, 0 deletions
diff --git a/node_modules/lodash._isnative/LICENSE.txt b/node_modules/lodash._isnative/LICENSE.txt
new file mode 100644
index 000000000..49869bbab
--- /dev/null
+++ b/node_modules/lodash._isnative/LICENSE.txt
@@ -0,0 +1,22 @@
+Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
+Based on Underscore.js 1.5.2, copyright 2009-2013 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. \ No newline at end of file
diff --git a/node_modules/lodash._isnative/README.md b/node_modules/lodash._isnative/README.md
new file mode 100644
index 000000000..fbcaad2f1
--- /dev/null
+++ b/node_modules/lodash._isnative/README.md
@@ -0,0 +1,15 @@
+# lodash._isnative v2.4.1
+
+The internal [Lo-Dash](http://lodash.com/) function `isNative` as a [Node.js](http://nodejs.org/) module generated by [lodash-cli](https://npmjs.org/package/lodash-cli).
+
+## Author
+
+| [![twitter/jdalton](http://gravatar.com/avatar/299a3d891ff1920b69c364d061007043?s=70)](https://twitter.com/jdalton "Follow @jdalton on Twitter") |
+|---|
+| [John-David Dalton](http://allyoucanleet.com/) |
+
+## Contributors
+
+| [![twitter/blainebublitz](http://gravatar.com/avatar/ac1c67fd906c9fecd823ce302283b4c1?s=70)](https://twitter.com/blainebublitz "Follow @BlaineBublitz on Twitter") | [![twitter/kitcambridge](http://gravatar.com/avatar/6662a1d02f351b5ef2f8b4d815804661?s=70)](https://twitter.com/kitcambridge "Follow @kitcambridge on Twitter") | [![twitter/mathias](http://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") |
+|---|---|---|
+| [Blaine Bublitz](http://www.iceddev.com/) | [Kit Cambridge](http://kitcambridge.be/) | [Mathias Bynens](http://mathiasbynens.be/) |
diff --git a/node_modules/lodash._isnative/index.js b/node_modules/lodash._isnative/index.js
new file mode 100644
index 000000000..b34a35006
--- /dev/null
+++ b/node_modules/lodash._isnative/index.js
@@ -0,0 +1,34 @@
+/**
+ * Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/>
+ * Build: `lodash modularize modern exports="npm" -o ./npm/`
+ * Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
+ * Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE>
+ * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
+ * Available under MIT license <http://lodash.com/license>
+ */
+
+/** Used for native method references */
+var objectProto = Object.prototype;
+
+/** Used to resolve the internal [[Class]] of values */
+var toString = objectProto.toString;
+
+/** Used to detect if a method is native */
+var reNative = RegExp('^' +
+ String(toString)
+ .replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
+ .replace(/toString| for [^\]]+/g, '.*?') + '$'
+);
+
+/**
+ * Checks if `value` is a native function.
+ *
+ * @private
+ * @param {*} value The value to check.
+ * @returns {boolean} Returns `true` if the `value` is a native function, else `false`.
+ */
+function isNative(value) {
+ return typeof value == 'function' && reNative.test(value);
+}
+
+module.exports = isNative;
diff --git a/node_modules/lodash._isnative/package.json b/node_modules/lodash._isnative/package.json
new file mode 100644
index 000000000..c2a81a0bf
--- /dev/null
+++ b/node_modules/lodash._isnative/package.json
@@ -0,0 +1,101 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "lodash._isnative@~2.4.1",
+ "scope": null,
+ "escapedName": "lodash._isnative",
+ "name": "lodash._isnative",
+ "rawSpec": "~2.4.1",
+ "spec": ">=2.4.1 <2.5.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/lodash.defaults/node_modules/lodash.keys"
+ ]
+ ],
+ "_from": "lodash._isnative@>=2.4.1 <2.5.0",
+ "_id": "lodash._isnative@2.4.1",
+ "_inCache": true,
+ "_location": "/lodash._isnative",
+ "_npmUser": {
+ "name": "jdalton",
+ "email": "john.david.dalton@gmail.com"
+ },
+ "_npmVersion": "1.3.14",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "lodash._isnative@~2.4.1",
+ "scope": null,
+ "escapedName": "lodash._isnative",
+ "name": "lodash._isnative",
+ "rawSpec": "~2.4.1",
+ "spec": ">=2.4.1 <2.5.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/gulp-gzip/lodash.keys",
+ "/gulp-sym/lodash.keys",
+ "/lodash._reunescapedhtml/lodash.keys",
+ "/lodash.defaults/lodash.keys",
+ "/lodash.values/lodash.keys"
+ ],
+ "_resolved": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz",
+ "_shasum": "3ea6404b784a7be836c7b57580e1cdf79b14832c",
+ "_shrinkwrap": null,
+ "_spec": "lodash._isnative@~2.4.1",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/lodash.defaults/node_modules/lodash.keys",
+ "author": {
+ "name": "John-David Dalton",
+ "email": "john.david.dalton@gmail.com",
+ "url": "http://allyoucanleet.com/"
+ },
+ "bugs": {
+ "url": "https://github.com/lodash/lodash-cli/issues"
+ },
+ "contributors": [
+ {
+ "name": "John-David Dalton",
+ "email": "john.david.dalton@gmail.com",
+ "url": "http://allyoucanleet.com/"
+ },
+ {
+ "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": "http://mathiasbynens.be/"
+ }
+ ],
+ "dependencies": {},
+ "description": "The internal Lo-Dash function `isNative` as a Node.js module generated by lodash-cli.",
+ "devDependencies": {},
+ "directories": {},
+ "dist": {
+ "shasum": "3ea6404b784a7be836c7b57580e1cdf79b14832c",
+ "tarball": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz"
+ },
+ "homepage": "http://lodash.com/custom-builds",
+ "license": "MIT",
+ "maintainers": [
+ {
+ "name": "jdalton",
+ "email": "john.david.dalton@gmail.com"
+ }
+ ],
+ "name": "lodash._isnative",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/lodash/lodash-cli.git"
+ },
+ "version": "2.4.1"
+}