-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
8 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ Package | Time (ms) | |
[email protected] | 1361 | ||
[email protected] | 1048 | ||
qdclone | 441 | ||
qdclone (*\*w/casting*) | 525 | ||
qdclone (*\* with casting*) | 525 | ||
|
||
*\* only `quick-deep-clone` supports casting prototypes* | ||
|
||
|
@@ -100,8 +100,6 @@ function runBench(type, obj, iterations, ...args) { | |
return cloned; | ||
} | ||
|
||
/* object */ | ||
|
||
function makeX() { | ||
|
||
let x = { | ||
|
@@ -144,6 +142,9 @@ function makeX() { | |
} | ||
``` | ||
|
||
## License | ||
## Contributing | ||
Feel free to make changes and submit pull requests whenever. | ||
|
||
MIT | ||
|
||
## License | ||
Mousetouch uses the [MIT](https://opensource.org/licenses/MIT) license. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
{ | ||
"name": "quick-deep-clone", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Quick deep clone.", | ||
"homepage": "https://github.com/obsius/quick-deep-clone", | ||
"author": "Jeff Seaman <[email protected]> (https://www.ngc6822.com)", | ||
"main": "index.js", | ||
"license": "MIT", | ||
"homepage": "https://github.com/obsius/quick-deep-clone", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/obsius/quick-deep-clone.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/obsius/quick-deep-clone/issues" | ||
}, | ||
"keywords": [ | ||
"clone", | ||
"deep", | ||
|