Comparing version 1.0.1 to 1.0.3
@@ -72,5 +72,5 @@ 'use strict'; | ||
function _createForOfIteratorHelper(o, allowArrayLike) { | ||
var it; | ||
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; | ||
if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { | ||
if (!it) { | ||
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { | ||
@@ -108,3 +108,3 @@ if (it) o = it; | ||
s: function () { | ||
it = o[Symbol.iterator](); | ||
it = it.call(o); | ||
}, | ||
@@ -111,0 +111,0 @@ n: function () { |
{ | ||
"name": "treedash", | ||
"version": "1.0.1", | ||
"version": "1.0.3", | ||
"description": "A Tree Utils Library For Development", | ||
@@ -23,3 +23,3 @@ "keywords": [ | ||
"type": "git", | ||
"url": "git+https://github.com/xitengfei/tree-lib.git" | ||
"url": "git+https://github.com/xitengfei/treedash.git" | ||
}, | ||
@@ -32,5 +32,5 @@ "files": [ | ||
"bugs": { | ||
"url": "https://github.com/xitengfei/tree-lib/issues" | ||
"url": "https://github.com/xitengfei/treedash/issues" | ||
}, | ||
"homepage": "https://github.com/xitengfei/tree-lib", | ||
"homepage": "https://github.com/xitengfei/treedash", | ||
"dependencies": { | ||
@@ -37,0 +37,0 @@ "@babel/runtime": "^7.12.5" |
@@ -1,3 +0,12 @@ | ||
# Tree Utils Library | ||
# treedash | ||
A light javascript library to process tree data structures | ||
A light javascript library to process tree data structures | ||
## Installation | ||
``` | ||
npm install treedash | ||
#or | ||
yarn add treedash | ||
``` |
Sorry, the diff of this file is not supported yet
29134
12