@fluidframework/core-utils 2.0.0-internal.3.2.2 → 2.0.0-internal.3.3.1
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.
- package/README.md +5 -1
- package/dist/compare.d.ts +2 -0
- package/dist/compare.d.ts.map +1 -1
- package/dist/compare.js +2 -0
- package/dist/compare.js.map +1 -1
- package/lib/compare.d.ts +2 -0
- package/lib/compare.d.ts.map +1 -1
- package/lib/compare.js +2 -0
- package/lib/compare.js.map +1 -1
- package/package.json +9 -8
- package/src/compare.ts +2 -0
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# @fluidframework/core-utils
|
|
2
2
|
|
|
3
|
-
Fluid agnostic utility functions
|
|
3
|
+
Intended for internally sharing/promoting best-practice implementations of Fluid agnostic utility functions across packages in the client repo.
|
|
4
|
+
|
|
5
|
+
Use outside of the Fluid Framework client repo is not supported or recommended.
|
|
6
|
+
|
|
7
|
+
All exports must be designated @internal. This package must not depend on other packages.
|
|
4
8
|
|
|
5
9
|
## Trademark
|
|
6
10
|
|
package/dist/compare.d.ts
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* Compare two arrays. Returns true if their elements are equivalent and in the same order.
|
|
7
7
|
*
|
|
8
|
+
* @internal
|
|
9
|
+
*
|
|
8
10
|
* @param left - The first array to compare
|
|
9
11
|
* @param right - The second array to compare
|
|
10
12
|
* @param comparator - The function used to check if two `T`s are equivalent.
|
package/dist/compare.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compare.d.ts","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH
|
|
1
|
+
{"version":3,"file":"compare.d.ts","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;GASG;AACH,eAAO,MAAM,aAAa,+FAGsB,MAAM,KAAK,OAAO,KAI/D,OAUF,CAAC"}
|
package/dist/compare.js
CHANGED
|
@@ -8,6 +8,8 @@ exports.compareArrays = void 0;
|
|
|
8
8
|
/**
|
|
9
9
|
* Compare two arrays. Returns true if their elements are equivalent and in the same order.
|
|
10
10
|
*
|
|
11
|
+
* @internal
|
|
12
|
+
*
|
|
11
13
|
* @param left - The first array to compare
|
|
12
14
|
* @param right - The second array to compare
|
|
13
15
|
* @param comparator - The function used to check if two `T`s are equivalent.
|
package/dist/compare.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compare.js","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH
|
|
1
|
+
{"version":3,"file":"compare.js","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH;;;;;;;;;GASG;AACI,MAAM,aAAa,GAAG,CAC5B,IAAkB,EAClB,KAAmB,EACnB,aAAoE,CACnE,QAAW,EACX,SAAY,EACX,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC,EACzB,EAAE;IACZ,6CAA6C;IAC7C,sCAAsC;IACtC,wDAAwD;IACxD,sEAAsE;IACtE,OAAO,CACN,IAAI,KAAK,KAAK,IAAI,+DAA+D;QACjF,CAAC,IAAI,CAAC,MAAM,KAAK,KAAK,CAAC,MAAM,IAAI,8DAA8D;YAC9F,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,KAAK,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,KAAK,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAC5E,CAAC;AACH,CAAC,CAAC;AAjBW,QAAA,aAAa,iBAiBxB","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * Compare two arrays. Returns true if their elements are equivalent and in the same order.\n *\n * @internal\n *\n * @param left - The first array to compare\n * @param right - The second array to compare\n * @param comparator - The function used to check if two `T`s are equivalent.\n * Defaults to `Object.is()` equality (a shallow compare where NaN = NaN and -0 ≠ 0)\n */\nexport const compareArrays = <T>(\n\tleft: readonly T[],\n\tright: readonly T[],\n\tcomparator: (leftItem: T, rightItem: T, index: number) => boolean = (\n\t\tleftItem: T,\n\t\trightItem: T,\n\t) => Object.is(leftItem, rightItem),\n): boolean => {\n\t// PERF: 'for-loop' and 'Array.every()' tied.\n\t// '===' and 'Object.is()' tied.\n\t// Trivial acceptance adds no measurable overhead.\n\t// 30% penalty vs. baseline for exported function [node 14 x64].\n\treturn (\n\t\tleft === right || // Trivial acceptance: 'left' and 'right' are the same instance\n\t\t(left.length === right.length && // Trivial rejection: 'left' and 'right' are different lengths\n\t\t\tleft.every((leftItem, index) => comparator(leftItem, right[index], index)))\n\t);\n};\n"]}
|
package/lib/compare.d.ts
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* Compare two arrays. Returns true if their elements are equivalent and in the same order.
|
|
7
7
|
*
|
|
8
|
+
* @internal
|
|
9
|
+
*
|
|
8
10
|
* @param left - The first array to compare
|
|
9
11
|
* @param right - The second array to compare
|
|
10
12
|
* @param comparator - The function used to check if two `T`s are equivalent.
|
package/lib/compare.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compare.d.ts","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH
|
|
1
|
+
{"version":3,"file":"compare.d.ts","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;GASG;AACH,eAAO,MAAM,aAAa,+FAGsB,MAAM,KAAK,OAAO,KAI/D,OAUF,CAAC"}
|
package/lib/compare.js
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* Compare two arrays. Returns true if their elements are equivalent and in the same order.
|
|
7
7
|
*
|
|
8
|
+
* @internal
|
|
9
|
+
*
|
|
8
10
|
* @param left - The first array to compare
|
|
9
11
|
* @param right - The second array to compare
|
|
10
12
|
* @param comparator - The function used to check if two `T`s are equivalent.
|
package/lib/compare.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compare.js","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH
|
|
1
|
+
{"version":3,"file":"compare.js","sourceRoot":"","sources":["../src/compare.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,CAC5B,IAAkB,EAClB,KAAmB,EACnB,aAAoE,CACnE,QAAW,EACX,SAAY,EACX,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,EAAE,SAAS,CAAC,EACzB,EAAE;IACZ,6CAA6C;IAC7C,sCAAsC;IACtC,wDAAwD;IACxD,sEAAsE;IACtE,OAAO,CACN,IAAI,KAAK,KAAK,IAAI,+DAA+D;QACjF,CAAC,IAAI,CAAC,MAAM,KAAK,KAAK,CAAC,MAAM,IAAI,8DAA8D;YAC9F,IAAI,CAAC,KAAK,CAAC,CAAC,QAAQ,EAAE,KAAK,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,KAAK,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAC5E,CAAC;AACH,CAAC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * Compare two arrays. Returns true if their elements are equivalent and in the same order.\n *\n * @internal\n *\n * @param left - The first array to compare\n * @param right - The second array to compare\n * @param comparator - The function used to check if two `T`s are equivalent.\n * Defaults to `Object.is()` equality (a shallow compare where NaN = NaN and -0 ≠ 0)\n */\nexport const compareArrays = <T>(\n\tleft: readonly T[],\n\tright: readonly T[],\n\tcomparator: (leftItem: T, rightItem: T, index: number) => boolean = (\n\t\tleftItem: T,\n\t\trightItem: T,\n\t) => Object.is(leftItem, rightItem),\n): boolean => {\n\t// PERF: 'for-loop' and 'Array.every()' tied.\n\t// '===' and 'Object.is()' tied.\n\t// Trivial acceptance adds no measurable overhead.\n\t// 30% penalty vs. baseline for exported function [node 14 x64].\n\treturn (\n\t\tleft === right || // Trivial acceptance: 'left' and 'right' are the same instance\n\t\t(left.length === right.length && // Trivial rejection: 'left' and 'right' are different lengths\n\t\t\tleft.every((leftItem, index) => comparator(leftItem, right[index], index)))\n\t);\n};\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-utils",
|
|
3
|
-
"version": "2.0.0-internal.3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0-internal.3.3.1",
|
|
4
|
+
"description": "Not intended for use outside the Fluid client repo.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"temp-directory": "nyc/.nyc_output"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@fluid-tools/benchmark": "^0.
|
|
39
|
-
"@fluid-tools/build-cli": "^0.
|
|
38
|
+
"@fluid-tools/benchmark": "^0.46.0",
|
|
39
|
+
"@fluid-tools/build-cli": "^0.12.0",
|
|
40
40
|
"@fluidframework/build-common": "^1.1.0",
|
|
41
|
-
"@fluidframework/build-tools": "^0.
|
|
41
|
+
"@fluidframework/build-tools": "^0.12.0",
|
|
42
42
|
"@fluidframework/eslint-config-fluid": "^2.0.0",
|
|
43
|
-
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.
|
|
43
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
|
|
44
44
|
"@microsoft/api-extractor": "^7.22.2",
|
|
45
45
|
"@rushstack/eslint-config": "^2.5.1",
|
|
46
46
|
"@types/mocha": "^9.1.1",
|
|
@@ -58,7 +58,8 @@
|
|
|
58
58
|
"typescript": "~4.5.5"
|
|
59
59
|
},
|
|
60
60
|
"typeValidation": {
|
|
61
|
-
"disabled": true
|
|
61
|
+
"disabled": true,
|
|
62
|
+
"broken": {}
|
|
62
63
|
},
|
|
63
64
|
"scripts": {
|
|
64
65
|
"bench": "mocha --timeout 999999 --perfMode --parentProcess --fgrep @Benchmark --reporter \"../../../node_modules/@fluid-tools/benchmark/dist/MochaReporter.js\"",
|
|
@@ -86,7 +87,7 @@
|
|
|
86
87
|
"test:mocha": "mocha",
|
|
87
88
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
88
89
|
"tsc": "tsc",
|
|
89
|
-
"typetests:gen": "
|
|
90
|
+
"typetests:gen": "fluid-type-test-generator",
|
|
90
91
|
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
|
|
91
92
|
}
|
|
92
93
|
}
|
package/src/compare.ts
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* Compare two arrays. Returns true if their elements are equivalent and in the same order.
|
|
8
8
|
*
|
|
9
|
+
* @internal
|
|
10
|
+
*
|
|
9
11
|
* @param left - The first array to compare
|
|
10
12
|
* @param right - The second array to compare
|
|
11
13
|
* @param comparator - The function used to check if two `T`s are equivalent.
|