@open-rpc/typings
Advanced tools
Comparing version 1.11.0 to 1.11.1
@@ -40,3 +40,6 @@ "use strict"; | ||
var result = Object(null); | ||
if (obj instanceof Set) { | ||
if (obj instanceof Array) { | ||
result = obj.map(function (o) { return exports.deepClone(o, hash); }); | ||
} | ||
else if (obj instanceof Set) { | ||
result = new Set(obj); | ||
@@ -43,0 +46,0 @@ } |
@@ -0,1 +1,9 @@ | ||
## [1.11.1](https://github.com/open-rpc/typings/compare/1.11.0...1.11.1) (2020-08-04) | ||
### Bug Fixes | ||
* handle arrays in deepClone ([fec9e6f](https://github.com/open-rpc/typings/commit/fec9e6fd4c1f7fb4b60d1bce06547609f9167cf5)) | ||
* update node modules ([5791f37](https://github.com/open-rpc/typings/commit/5791f37ad8bc000c69bc3fbd35a16bc94f392891)) | ||
# [1.11.0](https://github.com/open-rpc/typings/compare/1.10.0...1.11.0) (2020-07-30) | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "@open-rpc/typings", | ||
"private": false, | ||
"version": "1.11.0", | ||
"version": "1.11.1", | ||
"description": "", | ||
@@ -6,0 +6,0 @@ "main": "build/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44033
628