aboutsummaryrefslogtreecommitdiff
path: root/node_modules/indexof
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-03 15:35:00 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-03 15:35:00 +0200
commitde98e0b232509d5f40c135d540a70e415272ff85 (patch)
treea79222a5b58484ab3b80d18efcaaa7ccc4769b33 /node_modules/indexof
parente0c9d480a73fa629c1e4a47d3e721f1d2d345406 (diff)
downloadwallet-core-de98e0b232509d5f40c135d540a70e415272ff85.tar.xz
node_modules
Diffstat (limited to 'node_modules/indexof')
-rw-r--r--node_modules/indexof/.npmignore2
-rw-r--r--node_modules/indexof/Makefile11
-rw-r--r--node_modules/indexof/Readme.md15
-rw-r--r--node_modules/indexof/component.json10
-rw-r--r--node_modules/indexof/index.js10
-rw-r--r--node_modules/indexof/package.json12
6 files changed, 60 insertions, 0 deletions
diff --git a/node_modules/indexof/.npmignore b/node_modules/indexof/.npmignore
new file mode 100644
index 000000000..48a2e246c
--- /dev/null
+++ b/node_modules/indexof/.npmignore
@@ -0,0 +1,2 @@
+components
+build
diff --git a/node_modules/indexof/Makefile b/node_modules/indexof/Makefile
new file mode 100644
index 000000000..3f6119d22
--- /dev/null
+++ b/node_modules/indexof/Makefile
@@ -0,0 +1,11 @@
+
+build: components index.js
+ @component build
+
+components:
+ @Component install
+
+clean:
+ rm -fr build components template.js
+
+.PHONY: clean
diff --git a/node_modules/indexof/Readme.md b/node_modules/indexof/Readme.md
new file mode 100644
index 000000000..99c8dfc85
--- /dev/null
+++ b/node_modules/indexof/Readme.md
@@ -0,0 +1,15 @@
+
+# indexOf
+
+ Lame indexOf thing, thanks microsoft
+
+## Example
+
+```js
+var index = require('indexof');
+index(arr, obj);
+```
+
+## License
+
+ MIT \ No newline at end of file
diff --git a/node_modules/indexof/component.json b/node_modules/indexof/component.json
new file mode 100644
index 000000000..e3430d75c
--- /dev/null
+++ b/node_modules/indexof/component.json
@@ -0,0 +1,10 @@
+{
+ "name": "indexof",
+ "description": "Microsoft sucks",
+ "version": "0.0.1",
+ "keywords": ["index", "array", "indexOf"],
+ "dependencies": {},
+ "scripts": [
+ "index.js"
+ ]
+} \ No newline at end of file
diff --git a/node_modules/indexof/index.js b/node_modules/indexof/index.js
new file mode 100644
index 000000000..9d9667b2c
--- /dev/null
+++ b/node_modules/indexof/index.js
@@ -0,0 +1,10 @@
+
+var indexOf = [].indexOf;
+
+module.exports = function(arr, obj){
+ if (indexOf) return arr.indexOf(obj);
+ for (var i = 0; i < arr.length; ++i) {
+ if (arr[i] === obj) return i;
+ }
+ return -1;
+}; \ No newline at end of file
diff --git a/node_modules/indexof/package.json b/node_modules/indexof/package.json
new file mode 100644
index 000000000..79d009f41
--- /dev/null
+++ b/node_modules/indexof/package.json
@@ -0,0 +1,12 @@
+{
+ "name": "indexof",
+ "description": "Microsoft sucks",
+ "version": "0.0.1",
+ "keywords": ["index", "array", "indexOf"],
+ "dependencies": {},
+ "component": {
+ "scripts": {
+ "indexof/index.js": "index.js"
+ }
+ }
+} \ No newline at end of file