Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "crdts", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "A CRDT Library for JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -16,2 +16,3 @@ # CRDTs | ||
- [G-Counter](https://github.com/orbitdb/crdts/blob/master/src/G-Counter.js) | ||
- [PN-Counter](https://github.com/orbitdb/crdts/blob/master/src/PN-Counter.js) | ||
- [G-Set](https://github.com/orbitdb/crdts/blob/master/src/G-Set.js) | ||
@@ -29,2 +30,3 @@ - [2P-Set](https://github.com/orbitdb/crdts/blob/master/src/2P-Set.js) | ||
const GCounter = require('crdts').GCounter | ||
const PNCounter = require('crdts').PNCounter | ||
const GSet = require('crdts').GSet | ||
@@ -44,9 +46,9 @@ const TwoPSet = require('crdts').TwoPSet | ||
``` | ||
+-----------++-----------++----------++---------++------------+ | ||
Data Type | OR-Set || LWW-Set || 2P-Set || G-Set || G-Counter | | ||
+-----------++-----------++----------++---------++------------+ | ||
Base Class | CmRDT-Set | -- | | ||
|-----------------------------------------------+-------------+ | ||
CRDT Type | Operation-Based | State-based | | ||
+-----------------------------------------------+-------------+ | ||
+-----------++-----------++----------++---------++------------++------------+ | ||
Data Type | OR-Set || LWW-Set || 2P-Set || G-Set || G-Counter || PN-Counter | | ||
+-----------++-----------++----------++---------++------------++------------+ | ||
Base Class | CmRDT-Set | -- | | ||
|-----------------------------------------------+---------------------------+ | ||
CRDT Type | Operation-Based | State-based | | ||
+-----------------------------------------------+---------------------------+ | ||
``` | ||
@@ -53,0 +55,0 @@ |
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
99185
57