Skip to content

Commit c4a59b2

Browse files
author
Oren (electricessence)
committed
Updated references.
1 parent 023c076 commit c4a59b2

8 files changed

+28
-17
lines changed

Diff for: dist-esm/arrayCompare.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist-esm/arrayCompare.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/arrayCompare.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* @author electricessence / https://github.com/electricessence/
3-
* Licensing: MIT
3+
* @license MIT
44
*/
55
import { Comparison, EqualityComparison } from '@tsdotnet/compare/dist/Comparable';
66
export declare function areAllEqual(arrays: ArrayLike<ArrayLike<any>>, equalityComparison?: EqualityComparison<any>): boolean;

Diff for: dist/arrayCompare.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/arrayCompare.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package-lock.json

+13-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@
5858
"typescript": "^3.9.3"
5959
},
6060
"dependencies": {
61-
"@tsdotnet/compare": "^1.3.6",
61+
"@tsdotnet/compare": "^1.3.12",
6262
"@tsdotnet/exceptions": "^1.0.15",
63+
"@tsdotnet/type": "^1.0.7",
6364
"tslib": "^2.0.0"
6465
}
6566
}

Diff for: src/arrayCompare.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*!
22
* @author electricessence / https://github.com/electricessence/
3-
* Licensing: MIT
3+
* @license MIT
44
*/
55

66
import areEqualValue from '@tsdotnet/compare/dist/areEqual';
77
import ArgumentNullException from '@tsdotnet/exceptions/dist/ArgumentNullException';
88
import ArgumentException from '@tsdotnet/exceptions/dist/ArgumentException';
99
import {Comparison, EqualityComparison} from '@tsdotnet/compare/dist/Comparable';
10-
import type from '@tsdotnet/compare/dist/type';
11-
import {compare} from '@tsdotnet/compare';
10+
import type from '@tsdotnet/type';
11+
import compare from '@tsdotnet/compare/dist/compare';
1212

1313
/* validateSize: Utility for quick validation/invalidation of array equality.
1414
Why this way? Why not pass a closure for the last return?

0 commit comments

Comments
 (0)