@dcl/ecs 7.1.4-4620788316.commit-cf01bf1 → 7.1.4-4629772642.commit-2102c91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,3 +7,9 @@ export declare namespace CrdtUtils {
7
7
  }
8
8
  }
9
9
  export default CrdtUtils;
10
+ /**
11
+ * Compare raw data.
12
+ * @public
13
+ * @returns 0 if is the same data, 1 if a > b, -1 if b > a
14
+ */
15
+ export declare function dataCompare<T>(a: T, b: T): number;
@@ -11,7 +11,7 @@ export var CrdtUtils;
11
11
  export default CrdtUtils;
12
12
  /**
13
13
  * Compare raw data.
14
- * @internal
14
+ * @public
15
15
  * @returns 0 if is the same data, 1 if a > b, -1 if b > a
16
16
  */
17
17
  export function dataCompare(a, b) {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
3
  "description": "Decentraland ECS",
4
- "version": "7.1.4-4620788316.commit-cf01bf1",
4
+ "version": "7.1.4-4629772642.commit-2102c91",
5
5
  "author": "DCL",
6
6
  "bugs": "https://github.com/decentraland/ecs/issues",
7
7
  "dependencies": {
8
- "@dcl/js-runtime": "7.1.4-4620788316.commit-cf01bf1"
8
+ "@dcl/js-runtime": "7.1.4-4629772642.commit-2102c91"
9
9
  },
10
10
  "devDependencies": {
11
11
  "ts-proto": "^1.122.0"
@@ -34,5 +34,5 @@
34
34
  },
35
35
  "types": "./dist/index.d.ts",
36
36
  "typings": "./dist/index.d.ts",
37
- "commit": "cf01bf1623b9433750a94766ee54c3abbb937d38"
37
+ "commit": "2102c915898aee641052c61db19353215c4af356"
38
38
  }