We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 0f5a87dCopy full SHA for 0f5a87d
.eslintrc
@@ -0,0 +1,7 @@
1
+root: true
2
+
3
+env:
4
+ node: true
5
6
+extends:
7
+ "eslint:recommended"
.gitignore
@@ -0,0 +1,2 @@
+node_modules
+bower_components
index.js
package.json
@@ -0,0 +1,22 @@
+{
+ "name": "array-to-tree",
+ "version": "0.0.1",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "mocha"
8
+ },
9
+ "keywords": [
10
+ "array",
11
+ "list",
12
+ "pointer",
13
+ "parent",
14
+ "tree"
15
+ ],
16
+ "devDependencies": {
17
+ "eslint": "^1.4.1",
18
+ "mocha": "^2.3.0"
19
20
+ "author": "Philipp Alferov <philipp.alferov@gmail.com>",
21
+ "license": "MIT"
22
+}
test.js
0 commit comments