loro-crdt
Advanced tools
Comparing version 0.6.2 to 0.6.3
# Changelog | ||
## 0.6.3 | ||
### Patch Changes | ||
- Fix isContainer issue | ||
## 0.6.2 | ||
@@ -4,0 +10,0 @@ |
@@ -41,3 +41,3 @@ 'use strict'; | ||
} | ||
const p = value.__proto__; | ||
const p = Object.getPrototypeOf(value); | ||
if (p == null || typeof p !== "object" || typeof p["kind"] !== "function") { | ||
@@ -44,0 +44,0 @@ return false; |
{ | ||
"name": "loro-crdt", | ||
"version": "0.6.2", | ||
"version": "0.6.3", | ||
"description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -131,3 +131,3 @@ export * from "loro-wasm"; | ||
const p = value.__proto__; | ||
const p = Object.getPrototypeOf(value); | ||
if (p == null || typeof p !== "object" || typeof p["kind"] !== "function") { | ||
@@ -134,0 +134,0 @@ return false; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
108388