@kensio/smartass 0.0.5 → 0.1.0
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/dist/assert/identical/identical.assert.d.ts +6 -0
- package/dist/assert/identical/identical.assert.d.ts.map +1 -0
- package/dist/assert/identical/identical.assert.js +12 -0
- package/dist/assert/identical/identical.assert.js.map +1 -0
- package/dist/assert/non-nullable/non-nullable.assert.d.ts.map +1 -1
- package/dist/assert/non-nullable/non-nullable.assert.js +5 -2
- package/dist/assert/non-nullable/non-nullable.assert.js.map +1 -1
- package/dist/assert/not-empty/not-empty.assert.d.ts.map +1 -1
- package/dist/assert/not-empty/not-empty.assert.js +1 -1
- package/dist/assert/not-empty/not-empty.assert.js.map +1 -1
- package/dist/assert/number-between/number-between.assert.d.ts +6 -0
- package/dist/assert/number-between/number-between.assert.d.ts.map +1 -0
- package/dist/assert/number-between/number-between.assert.js +14 -0
- package/dist/assert/number-between/number-between.assert.js.map +1 -0
- package/dist/assert/number-to-nearest/number-to-nearest.assert.d.ts +6 -0
- package/dist/assert/number-to-nearest/number-to-nearest.assert.d.ts.map +1 -0
- package/dist/assert/number-to-nearest/number-to-nearest.assert.js +20 -0
- package/dist/assert/number-to-nearest/number-to-nearest.assert.js.map +1 -0
- package/dist/assert/one-of/one-of.assert.d.ts.map +1 -1
- package/dist/assert/one-of/one-of.assert.js +3 -2
- package/dist/assert/one-of/one-of.assert.js.map +1 -1
- package/dist/assert/type-bigint/type-bigint.assert.d.ts +5 -0
- package/dist/assert/type-bigint/type-bigint.assert.d.ts.map +1 -0
- package/dist/assert/type-bigint/type-bigint.assert.js +11 -0
- package/dist/assert/type-bigint/type-bigint.assert.js.map +1 -0
- package/dist/assert/type-boolean/type-boolean.assert.d.ts +5 -0
- package/dist/assert/type-boolean/type-boolean.assert.d.ts.map +1 -0
- package/dist/assert/type-boolean/type-boolean.assert.js +11 -0
- package/dist/assert/type-boolean/type-boolean.assert.js.map +1 -0
- package/dist/assert/type-function/type-function.assert.d.ts +5 -0
- package/dist/assert/type-function/type-function.assert.d.ts.map +1 -0
- package/dist/assert/type-function/type-function.assert.js +11 -0
- package/dist/assert/type-function/type-function.assert.js.map +1 -0
- package/dist/assert/type-number/type-number.assert.d.ts +5 -0
- package/dist/assert/type-number/type-number.assert.d.ts.map +1 -0
- package/dist/assert/type-number/type-number.assert.js +11 -0
- package/dist/assert/type-number/type-number.assert.js.map +1 -0
- package/dist/assert/type-numeric/type-numeric.assert.d.ts +5 -0
- package/dist/assert/type-numeric/type-numeric.assert.d.ts.map +1 -0
- package/dist/assert/type-numeric/type-numeric.assert.js +11 -0
- package/dist/assert/type-numeric/type-numeric.assert.js.map +1 -0
- package/dist/assert/type-object/type-object.assert.d.ts +5 -0
- package/dist/assert/type-object/type-object.assert.d.ts.map +1 -0
- package/dist/assert/type-object/type-object.assert.js +11 -0
- package/dist/assert/type-object/type-object.assert.js.map +1 -0
- package/dist/assert/type-string/type-string.assert.d.ts +5 -0
- package/dist/assert/type-string/type-string.assert.d.ts.map +1 -0
- package/dist/assert/type-string/type-string.assert.js +11 -0
- package/dist/assert/type-string/type-string.assert.js.map +1 -0
- package/dist/assertion-error.d.ts +7 -0
- package/dist/assertion-error.d.ts.map +1 -1
- package/dist/assertion-error.js +11 -0
- package/dist/assertion-error.js.map +1 -1
- package/dist/describe/describe.d.ts +10 -0
- package/dist/describe/describe.d.ts.map +1 -0
- package/dist/describe/describe.js +181 -0
- package/dist/describe/describe.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Assert that a value is strictly identical to an expected value using ===,
|
|
3
|
+
* with type-narrowing.
|
|
4
|
+
*/
|
|
5
|
+
export declare function assertIdentical<const TExpected>(value: unknown, expected: TExpected, message?: string): asserts value is typeof expected;
|
|
6
|
+
//# sourceMappingURL=identical.assert.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identical.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/identical/identical.assert.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,wBAAgB,eAAe,CAAC,KAAK,CAAC,SAAS,EAC7C,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,SAAS,EACnB,OAAO,SAAkE,GACxE,OAAO,CAAC,KAAK,IAAI,OAAO,QAAQ,CAIlC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is strictly identical to an expected value using ===,
|
|
5
|
+
* with type-narrowing.
|
|
6
|
+
*/
|
|
7
|
+
export function assertIdentical(value, expected, message = `Expected ${desc(value)} to be identical to ${desc(expected)}.`) {
|
|
8
|
+
if (value !== expected) {
|
|
9
|
+
throw new AssertionError(message, value, expected);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=identical.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identical.assert.js","sourceRoot":"","sources":["../../../src/assert/identical/identical.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;;GAGG;AACH,MAAM,UAAU,eAAe,CAC7B,KAAc,EACd,QAAmB,EACnB,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,uBAAuB,IAAI,CAAC,QAAQ,CAAC,GAAG;IAEzE,IAAI,KAAK,KAAK,QAAQ,EAAE,CAAC;QACvB,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAC;IACrD,CAAC;AACH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"non-nullable.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/non-nullable/non-nullable.assert.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"non-nullable.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/non-nullable/non-nullable.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,CAAC,EACjC,KAAK,EAAE,CAAC,EACR,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,KAAK,IAAI,WAAW,CAAC,CAAC,CAAC,CAgBjC"}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
2
3
|
/**
|
|
3
4
|
* Assert that a value is non-nullable, with type-narrowing.
|
|
4
5
|
*/
|
|
5
6
|
export function assertNonNullable(value, message) {
|
|
6
7
|
if (value === null) {
|
|
7
|
-
throw new AssertionError(message ??
|
|
8
|
+
throw new AssertionError(message ?? `Expected ${desc(value)} not to be null.`, value,
|
|
9
|
+
// eslint-disable-next-line unicorn/no-null
|
|
10
|
+
null);
|
|
8
11
|
}
|
|
9
12
|
if (value === undefined) {
|
|
10
|
-
throw new AssertionError(message ??
|
|
13
|
+
throw new AssertionError(message ?? `Expected ${desc(value)} not to be undefined.`, value, undefined);
|
|
11
14
|
}
|
|
12
15
|
}
|
|
13
16
|
//# sourceMappingURL=non-nullable.assert.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"non-nullable.assert.js","sourceRoot":"","sources":["../../../src/assert/non-nullable/non-nullable.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"non-nullable.assert.js","sourceRoot":"","sources":["../../../src/assert/non-nullable/non-nullable.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAC/B,KAAQ,EACR,OAAgB;IAEhB,IAAI,KAAK,KAAK,IAAI,EAAE,CAAC;QACnB,MAAM,IAAI,cAAc,CACtB,OAAO,IAAI,YAAY,IAAI,CAAC,KAAK,CAAC,kBAAkB,EACpD,KAAK;QACL,2CAA2C;QAC3C,IAAI,CACL,CAAC;IACJ,CAAC;IACD,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACxB,MAAM,IAAI,cAAc,CACtB,OAAO,IAAI,YAAY,IAAI,CAAC,KAAK,CAAC,uBAAuB,EACzD,KAAK,EACL,SAAS,CACV,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"not-empty.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/not-empty/not-empty.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAC9B,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,SAAS,GAAG,IAAI,EACtC,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,KAAK,IAAI,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"not-empty.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/not-empty/not-empty.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAC9B,KAAK,EAAE,SAAS,CAAC,EAAE,GAAG,SAAS,GAAG,IAAI,EACtC,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,KAAK,IAAI,SAAS,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,CAUvC"}
|
|
@@ -6,7 +6,7 @@ import { AssertionError } from "../../assertion-error.js";
|
|
|
6
6
|
export function assertNotEmpty(value, message) {
|
|
7
7
|
assertNonNullable(value, message);
|
|
8
8
|
if (value.length === 0) {
|
|
9
|
-
throw new AssertionError(message ?? `Expected array not to be empty, but it was empty
|
|
9
|
+
throw new AssertionError(message ?? `Expected array not to be empty, but it was empty.`, value, ["..."]);
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
//# sourceMappingURL=not-empty.assert.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"not-empty.assert.js","sourceRoot":"","sources":["../../../src/assert/not-empty/not-empty.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D;;GAEG;AACH,MAAM,UAAU,cAAc,CAC5B,KAAsC,EACtC,OAAgB;IAEhB,iBAAiB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAElC,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACvB,MAAM,IAAI,cAAc,CACtB,OAAO,IAAI,mDAAmD,
|
|
1
|
+
{"version":3,"file":"not-empty.assert.js","sourceRoot":"","sources":["../../../src/assert/not-empty/not-empty.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D;;GAEG;AACH,MAAM,UAAU,cAAc,CAC5B,KAAsC,EACtC,OAAgB;IAEhB,iBAAiB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAElC,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACvB,MAAM,IAAI,cAAc,CACtB,OAAO,IAAI,mDAAmD,EAC9D,KAAK,EACL,CAAC,KAAK,CAAC,CACR,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Assert that a numeric value is between min and max inclusive, with
|
|
3
|
+
* type-narrowing.
|
|
4
|
+
*/
|
|
5
|
+
export declare function assertNumberBetween(value: unknown, min: number | bigint, max: number | bigint, message?: string): asserts value is number | bigint;
|
|
6
|
+
//# sourceMappingURL=number-between.assert.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-between.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/number-between/number-between.assert.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,OAAO,EACd,GAAG,EAAE,MAAM,GAAG,MAAM,EACpB,GAAG,EAAE,MAAM,GAAG,MAAM,EACpB,OAAO,SAAmF,GACzF,OAAO,CAAC,KAAK,IAAI,MAAM,GAAG,MAAM,CAUlC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { assertTypeNumeric } from "../type-numeric/type-numeric.assert.js";
|
|
3
|
+
import { desc, repr } from "../../describe/describe.js";
|
|
4
|
+
/**
|
|
5
|
+
* Assert that a numeric value is between min and max inclusive, with
|
|
6
|
+
* type-narrowing.
|
|
7
|
+
*/
|
|
8
|
+
export function assertNumberBetween(value, min, max, message = `Expected ${desc(value)} to be between ${desc(min)} and ${desc(max)} inclusive.`) {
|
|
9
|
+
assertTypeNumeric(value, message);
|
|
10
|
+
if (value < min || value > max) {
|
|
11
|
+
throw new AssertionError(message, value, `${repr(min)} ≤ ${repr(value)} ≤ ${repr(max)}`);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=number-between.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-between.assert.js","sourceRoot":"","sources":["../../../src/assert/number-between/number-between.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAExD;;;GAGG;AACH,MAAM,UAAU,mBAAmB,CACjC,KAAc,EACd,GAAoB,EACpB,GAAoB,EACpB,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,kBAAkB,IAAI,CAAC,GAAG,CAAC,QAAQ,IAAI,CAAC,GAAG,CAAC,aAAa;IAE1F,iBAAiB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IAElC,IAAI,KAAK,GAAG,GAAG,IAAI,KAAK,GAAG,GAAG,EAAE,CAAC;QAC/B,MAAM,IAAI,cAAc,CACtB,OAAO,EACP,KAAK,EACL,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,IAAI,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,GAAG,CAAC,EAAE,CAC/C,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Assert that a numeric value, when rounded to the nearest given increment,
|
|
3
|
+
* equals the expected value.
|
|
4
|
+
*/
|
|
5
|
+
export declare function assertNumberToNearest(value: unknown, toNearest: number, expected: number, message?: string): asserts value is number;
|
|
6
|
+
//# sourceMappingURL=number-to-nearest.assert.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-to-nearest.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/number-to-nearest/number-to-nearest.assert.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,wBAAgB,qBAAqB,CACnC,KAAK,EAAE,OAAO,EACd,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC,KAAK,IAAI,MAAM,CAkBzB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { repr } from "../../describe/describe.js";
|
|
3
|
+
import { assertTypeNumber } from "../type-number/type-number.assert.js";
|
|
4
|
+
/**
|
|
5
|
+
* Assert that a numeric value, when rounded to the nearest given increment,
|
|
6
|
+
* equals the expected value.
|
|
7
|
+
*/
|
|
8
|
+
export function assertNumberToNearest(value, toNearest, expected, message) {
|
|
9
|
+
assertTypeNumber(value);
|
|
10
|
+
const rawRounded = Math.round(value / toNearest) * toNearest;
|
|
11
|
+
// Determine decimal places in toNearest to avoid floating point errors
|
|
12
|
+
const parts = toNearest.toString().split(".");
|
|
13
|
+
const decimalPlaces = parts[1]?.length ?? 0;
|
|
14
|
+
const rounded = Number(rawRounded.toFixed(decimalPlaces));
|
|
15
|
+
if (rounded !== expected) {
|
|
16
|
+
throw new AssertionError(message ??
|
|
17
|
+
`Expected to equal ${repr(expected)} to nearest ${repr(toNearest)}, got ${repr(value)} rounding to ${repr(rounded)}.`, value, `${repr(expected)} (to nearest ${repr(toNearest)})`);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=number-to-nearest.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-to-nearest.assert.js","sourceRoot":"","sources":["../../../src/assert/number-to-nearest/number-to-nearest.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAExE;;;GAGG;AACH,MAAM,UAAU,qBAAqB,CACnC,KAAc,EACd,SAAiB,EACjB,QAAgB,EAChB,OAAgB;IAEhB,gBAAgB,CAAC,KAAK,CAAC,CAAC;IAExB,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,SAAS,CAAC,GAAG,SAAS,CAAC;IAE7D,uEAAuE;IACvE,MAAM,KAAK,GAAG,SAAS,CAAC,QAAQ,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAC9C,MAAM,aAAa,GAAG,KAAK,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,CAAC,CAAC;IAC5C,MAAM,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;IAE1D,IAAI,OAAO,KAAK,QAAQ,EAAE,CAAC;QACzB,MAAM,IAAI,cAAc,CACtB,OAAO;YACL,qBAAqB,IAAI,CAAC,QAAQ,CAAC,eAAe,IAAI,CAAC,SAAS,CAAC,SAAS,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,CAAC,OAAO,CAAC,GAAG,EACvH,KAAK,EACL,GAAG,IAAI,CAAC,QAAQ,CAAC,gBAAgB,IAAI,CAAC,SAAS,CAAC,GAAG,CACpD,CAAC;IACJ,CAAC;AACH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"one-of.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/one-of/one-of.assert.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"one-of.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/one-of/one-of.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,WAAW,CAAC,KAAK,CAAC,QAAQ,SAAS,SAAS,OAAO,EAAE,EACnE,KAAK,EAAE,OAAO,EACd,OAAO,EAAE,QAAQ,EACjB,OAAO,SAA2D,GACjE,OAAO,CAAC,KAAK,IAAI,QAAQ,CAAC,MAAM,CAAC,CAInC"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc, repr } from "../../describe/describe.js";
|
|
2
3
|
/**
|
|
3
4
|
* Assert that a value is one of a set of expected values, with type-narrowing.
|
|
4
5
|
*/
|
|
5
|
-
export function assertOneOf(value, allowed, message = `Expected value to be one of
|
|
6
|
+
export function assertOneOf(value, allowed, message = `Expected ${desc(value)} to be one of ${repr(allowed)}.`) {
|
|
6
7
|
if (!allowed.includes(value)) {
|
|
7
|
-
throw new AssertionError(message);
|
|
8
|
+
throw new AssertionError(message, value, `one of ${desc(allowed)}`);
|
|
8
9
|
}
|
|
9
10
|
}
|
|
10
11
|
//# sourceMappingURL=one-of.assert.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"one-of.assert.js","sourceRoot":"","sources":["../../../src/assert/one-of/one-of.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"one-of.assert.js","sourceRoot":"","sources":["../../../src/assert/one-of/one-of.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAExD;;GAEG;AACH,MAAM,UAAU,WAAW,CACzB,KAAc,EACd,OAAiB,EACjB,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,iBAAiB,IAAI,CAAC,OAAO,CAAC,GAAG;IAElE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;QAC7B,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,KAAK,EAAE,UAAU,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;IACtE,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-bigint.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-bigint/type-bigint.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,EAAE,OAAO,EACd,OAAO,SAAkD,GACxD,OAAO,CAAC,KAAK,IAAI,MAAM,CAIzB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Asserts that a value is a bigint, with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeBigInt(value, message = `Expected ${desc(value)} to be of type bigint.`) {
|
|
7
|
+
if (typeof value !== "bigint") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "bigint");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-bigint.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-bigint.assert.js","sourceRoot":"","sources":["../../../src/assert/type-bigint/type-bigint.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAC9B,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,wBAAwB;IAEzD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAC9B,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC;IAC5D,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-boolean.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-boolean/type-boolean.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,OAAO,EACd,OAAO,SAAmD,GACzD,OAAO,CAAC,KAAK,IAAI,OAAO,CAI1B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is of type boolean, with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeBoolean(value, message = `Expected ${desc(value)} to be of type boolean.`) {
|
|
7
|
+
if (typeof value !== "boolean") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "boolean");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-boolean.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-boolean.assert.js","sourceRoot":"","sources":["../../../src/assert/type-boolean/type-boolean.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAC/B,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,yBAAyB;IAE1D,IAAI,OAAO,KAAK,KAAK,SAAS,EAAE,CAAC;QAC/B,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,SAAS,CAAC,CAAC;IAC7D,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-function.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-function/type-function.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,OAAO,EACd,OAAO,SAAoD,GAE1D,OAAO,CAAC,KAAK,IAAI,QAAQ,CAI3B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is of type function, with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeFunction(value, message = `Expected ${desc(value)} to be of type function.`) {
|
|
7
|
+
if (typeof value !== "function") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "function");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-function.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-function.assert.js","sourceRoot":"","sources":["../../../src/assert/type-function/type-function.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,kBAAkB,CAChC,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,0BAA0B;IAG3D,IAAI,OAAO,KAAK,KAAK,UAAU,EAAE,CAAC;QAChC,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,UAAU,CAAC,CAAC;IAC9D,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-number.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-number/type-number.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,EAAE,OAAO,EACd,OAAO,SAAkD,GACxD,OAAO,CAAC,KAAK,IAAI,MAAM,CAIzB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is of type number, with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeNumber(value, message = `Expected ${desc(value)} to be of type number.`) {
|
|
7
|
+
if (typeof value !== "number") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "number");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-number.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-number.assert.js","sourceRoot":"","sources":["../../../src/assert/type-number/type-number.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAC9B,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,wBAAwB;IAEzD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAC9B,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC;IAC5D,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-numeric.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-numeric/type-numeric.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,OAAO,EACd,OAAO,SAA4D,GAClE,OAAO,CAAC,KAAK,IAAI,MAAM,GAAG,MAAM,CAIlC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is numeric (number or bigint), with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeNumeric(value, message = `Expected ${desc(value)} to be of type number or bigint.`) {
|
|
7
|
+
if (typeof value !== "number" && typeof value !== "bigint") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "number | bigint");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-numeric.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-numeric.assert.js","sourceRoot":"","sources":["../../../src/assert/type-numeric/type-numeric.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,iBAAiB,CAC/B,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,kCAAkC;IAEnE,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAC3D,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,iBAAiB,CAAC,CAAC;IACrE,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-object.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-object/type-object.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,EAAE,OAAO,EACd,OAAO,SAAkD,GACxD,OAAO,CAAC,KAAK,IAAI,MAAM,CAIzB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is of type object, with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeObject(value, message = `Expected ${desc(value)} to be of type object.`) {
|
|
7
|
+
if (typeof value !== "object") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "object");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-object.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-object.assert.js","sourceRoot":"","sources":["../../../src/assert/type-object/type-object.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAC9B,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,wBAAwB;IAEzD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAC9B,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC;IAC5D,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-string.assert.d.ts","sourceRoot":"","sources":["../../../src/assert/type-string/type-string.assert.ts"],"names":[],"mappings":"AAGA;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,EAAE,OAAO,EACd,OAAO,SAAkD,GACxD,OAAO,CAAC,KAAK,IAAI,MAAM,CAIzB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AssertionError } from "../../assertion-error.js";
|
|
2
|
+
import { desc } from "../../describe/describe.js";
|
|
3
|
+
/**
|
|
4
|
+
* Assert that a value is of type string, with type-narrowing.
|
|
5
|
+
*/
|
|
6
|
+
export function assertTypeString(value, message = `Expected ${desc(value)} to be of type string.`) {
|
|
7
|
+
if (typeof value !== "string") {
|
|
8
|
+
throw new AssertionError(message, typeof value, "string");
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=type-string.assert.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-string.assert.js","sourceRoot":"","sources":["../../../src/assert/type-string/type-string.assert.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,4BAA4B,CAAC;AAElD;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAC9B,KAAc,EACd,OAAO,GAAG,YAAY,IAAI,CAAC,KAAK,CAAC,wBAAwB;IAEzD,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAC9B,MAAM,IAAI,cAAc,CAAC,OAAO,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC;IAC5D,CAAC;AACH,CAAC"}
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* An assertion failed.
|
|
3
|
+
* Provide helpful string message, as well as actual and expected properties to
|
|
4
|
+
* allow test frameworks to display better diffs.
|
|
3
5
|
*/
|
|
4
6
|
export declare class AssertionError extends Error {
|
|
7
|
+
actual: unknown;
|
|
8
|
+
expected: unknown;
|
|
9
|
+
name: "AssertionError";
|
|
10
|
+
showDiff: boolean;
|
|
11
|
+
constructor(message: string, actual: unknown, expected: unknown);
|
|
5
12
|
}
|
|
6
13
|
//# sourceMappingURL=assertion-error.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assertion-error.d.ts","sourceRoot":"","sources":["../src/assertion-error.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"assertion-error.d.ts","sourceRoot":"","sources":["../src/assertion-error.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,qBAAa,cAAe,SAAQ,KAAK;IAM9B,MAAM,EAAE,OAAO;IACf,QAAQ,EAAE,OAAO;IANjB,IAAI,EAAG,gBAAgB,CAAU;IAC1C,QAAQ,UAAQ;gBAGd,OAAO,EAAE,MAAM,EACR,MAAM,EAAE,OAAO,EACf,QAAQ,EAAE,OAAO;CAI3B"}
|
package/dist/assertion-error.js
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* An assertion failed.
|
|
3
|
+
* Provide helpful string message, as well as actual and expected properties to
|
|
4
|
+
* allow test frameworks to display better diffs.
|
|
3
5
|
*/
|
|
4
6
|
export class AssertionError extends Error {
|
|
7
|
+
actual;
|
|
8
|
+
expected;
|
|
9
|
+
name = "AssertionError";
|
|
10
|
+
showDiff = true;
|
|
11
|
+
constructor(message, actual, expected) {
|
|
12
|
+
super(message);
|
|
13
|
+
this.actual = actual;
|
|
14
|
+
this.expected = expected;
|
|
15
|
+
}
|
|
5
16
|
}
|
|
6
17
|
//# sourceMappingURL=assertion-error.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assertion-error.js","sourceRoot":"","sources":["../src/assertion-error.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"assertion-error.js","sourceRoot":"","sources":["../src/assertion-error.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,OAAO,cAAe,SAAQ,KAAK;IAM9B;IACA;IANA,IAAI,GAAG,gBAAyB,CAAC;IAC1C,QAAQ,GAAG,IAAI,CAAC;IAEhB,YACE,OAAe,EACR,MAAe,EACf,QAAiB;QAExB,KAAK,CAAC,OAAO,CAAC,CAAC;QAHR,WAAM,GAAN,MAAM,CAAS;QACf,aAAQ,GAAR,QAAQ,CAAS;IAG1B,CAAC;CACF"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Try to make a useful description of a value that is helpful for debugging.
|
|
3
|
+
*/
|
|
4
|
+
export declare function desc(value: unknown): string;
|
|
5
|
+
/**
|
|
6
|
+
* Try to make a string representation of a value that is valid ES syntax for
|
|
7
|
+
* that value, or at least unambiguous.
|
|
8
|
+
*/
|
|
9
|
+
export declare function repr(value: unknown, seen?: WeakSet<object>): string;
|
|
10
|
+
//# sourceMappingURL=describe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe.d.ts","sourceRoot":"","sources":["../../src/describe/describe.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,wBAAgB,IAAI,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAkC3C;AAED;;;GAGG;AACH,wBAAgB,IAAI,CAAC,KAAK,EAAE,OAAO,EAAE,IAAI,kBAAwB,GAAG,MAAM,CA+GzE"}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Try to make a useful description of a value that is helpful for debugging.
|
|
3
|
+
*/
|
|
4
|
+
export function desc(value) {
|
|
5
|
+
if (value === null)
|
|
6
|
+
return "null";
|
|
7
|
+
if (value === undefined)
|
|
8
|
+
return "undefined";
|
|
9
|
+
if (typeof value === "boolean" ||
|
|
10
|
+
typeof value === "number" ||
|
|
11
|
+
typeof value === "bigint" ||
|
|
12
|
+
typeof value === "string" ||
|
|
13
|
+
typeof value === "symbol") {
|
|
14
|
+
return `${typeof value} ${repr(value)}`;
|
|
15
|
+
}
|
|
16
|
+
if (typeof value === "function")
|
|
17
|
+
return `${repr(value)} (${String(value.length)} args)`;
|
|
18
|
+
if (Array.isArray(value)) {
|
|
19
|
+
return `array ${repr(value)} (len ${String(value.length)})`;
|
|
20
|
+
}
|
|
21
|
+
if (value instanceof Map) {
|
|
22
|
+
return `${repr(value)} (size ${String(value.size)})`;
|
|
23
|
+
}
|
|
24
|
+
if (value instanceof Set) {
|
|
25
|
+
return `${repr(value)} (size ${String(value.size)})`;
|
|
26
|
+
}
|
|
27
|
+
if (value instanceof RegExp) {
|
|
28
|
+
return `RegExp ${repr(value)}`;
|
|
29
|
+
}
|
|
30
|
+
return `object ${repr(value)}`;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Try to make a string representation of a value that is valid ES syntax for
|
|
34
|
+
* that value, or at least unambiguous.
|
|
35
|
+
*/
|
|
36
|
+
export function repr(value, seen = new WeakSet()) {
|
|
37
|
+
// Avoid infinite recursion on circular references.
|
|
38
|
+
if (value !== null && typeof value === "object") {
|
|
39
|
+
if (seen.has(value))
|
|
40
|
+
return "[Circular]";
|
|
41
|
+
seen.add(value);
|
|
42
|
+
}
|
|
43
|
+
if (value === null)
|
|
44
|
+
return "null";
|
|
45
|
+
if (value === undefined)
|
|
46
|
+
return "undefined";
|
|
47
|
+
if (typeof value === "boolean")
|
|
48
|
+
return value ? "true" : "false";
|
|
49
|
+
if (typeof value === "number") {
|
|
50
|
+
if (Object.is(value, -0))
|
|
51
|
+
return "-0";
|
|
52
|
+
if (Number.isNaN(value))
|
|
53
|
+
return "NaN";
|
|
54
|
+
if (value === Infinity)
|
|
55
|
+
return "Infinity";
|
|
56
|
+
if (value === -Infinity)
|
|
57
|
+
return "-Infinity";
|
|
58
|
+
return String(value);
|
|
59
|
+
}
|
|
60
|
+
if (typeof value === "bigint") {
|
|
61
|
+
return `${String(value)}n`;
|
|
62
|
+
}
|
|
63
|
+
if (typeof value === "string") {
|
|
64
|
+
return safeJson(value);
|
|
65
|
+
}
|
|
66
|
+
if (typeof value === "symbol") {
|
|
67
|
+
return value.toString();
|
|
68
|
+
}
|
|
69
|
+
if (typeof value === "function") {
|
|
70
|
+
const name = value.name || "anonymous";
|
|
71
|
+
return `function ${name}(){}`;
|
|
72
|
+
}
|
|
73
|
+
if (Array.isArray(value)) {
|
|
74
|
+
const items = reprList(value, seen);
|
|
75
|
+
return `[${items}]`;
|
|
76
|
+
}
|
|
77
|
+
if (value instanceof Map) {
|
|
78
|
+
const entries = reprList([...value.entries()], seen);
|
|
79
|
+
return `Map([${entries}])`;
|
|
80
|
+
}
|
|
81
|
+
if (value instanceof Set) {
|
|
82
|
+
const entries = reprList([...value.values()], seen);
|
|
83
|
+
return `Set([${entries}])`;
|
|
84
|
+
}
|
|
85
|
+
if (value instanceof WeakMap)
|
|
86
|
+
return "WeakMap{}";
|
|
87
|
+
if (value instanceof WeakSet)
|
|
88
|
+
return "WeakSet{}";
|
|
89
|
+
if (value instanceof Date) {
|
|
90
|
+
if (Number.isNaN(value.getTime()))
|
|
91
|
+
return 'Date("Invalid")';
|
|
92
|
+
return `Date("${value.toISOString()}")`;
|
|
93
|
+
}
|
|
94
|
+
if (value instanceof RegExp) {
|
|
95
|
+
return value.toString();
|
|
96
|
+
}
|
|
97
|
+
if (value instanceof Promise) {
|
|
98
|
+
return "Promise{}";
|
|
99
|
+
}
|
|
100
|
+
if (ArrayBuffer.isView(value)) {
|
|
101
|
+
return `${value.constructor.name} (${String(value.byteLength)} bytes)`;
|
|
102
|
+
}
|
|
103
|
+
if (value instanceof URL)
|
|
104
|
+
return `URL("${value.href}")`;
|
|
105
|
+
if (value instanceof Error) {
|
|
106
|
+
const parts = [`${value.name}(${safeJson(value.message)})`];
|
|
107
|
+
if ("cause" in value && value.cause !== undefined) {
|
|
108
|
+
parts.push(`cause=${desc(value.cause)}`);
|
|
109
|
+
}
|
|
110
|
+
const stack = value.stack?.split("\n")[1]?.trim();
|
|
111
|
+
if (stack !== undefined)
|
|
112
|
+
parts.push(`stack=${stack.replace(/^at\s+/, "")}`);
|
|
113
|
+
return parts.join(" ");
|
|
114
|
+
}
|
|
115
|
+
if (typeof value === "object") {
|
|
116
|
+
const proto = Object.getPrototypeOf(value);
|
|
117
|
+
const ctorName = typeof proto?.constructor?.name === "string"
|
|
118
|
+
? proto.constructor.name
|
|
119
|
+
: undefined;
|
|
120
|
+
const json = reprObject(value, seen);
|
|
121
|
+
if (ctorName !== undefined && ctorName !== "Object") {
|
|
122
|
+
return `${ctorName} ${json}`;
|
|
123
|
+
}
|
|
124
|
+
if (Object.getPrototypeOf(value) === null) {
|
|
125
|
+
return `Object.create(null) ${json}`;
|
|
126
|
+
}
|
|
127
|
+
return json;
|
|
128
|
+
}
|
|
129
|
+
/* v8 ignore next 1 -- @preserve */
|
|
130
|
+
return safeJson(value);
|
|
131
|
+
}
|
|
132
|
+
function reprList(items, seen) {
|
|
133
|
+
if (items.length <= 10) {
|
|
134
|
+
return items.map((item) => repr(item, seen)).join(",");
|
|
135
|
+
}
|
|
136
|
+
const first = items.slice(0, 3).map((item) => repr(item, seen));
|
|
137
|
+
const last = items.slice(-3).map((item) => repr(item, seen));
|
|
138
|
+
return [...first, "...", ...last].join(",");
|
|
139
|
+
}
|
|
140
|
+
function reprObject(value, seen) {
|
|
141
|
+
let entries;
|
|
142
|
+
try {
|
|
143
|
+
entries = Object.entries(value);
|
|
144
|
+
}
|
|
145
|
+
catch (error) {
|
|
146
|
+
if (error instanceof TypeError) {
|
|
147
|
+
return "[Unserializable object]";
|
|
148
|
+
}
|
|
149
|
+
throw error;
|
|
150
|
+
}
|
|
151
|
+
if (entries.length === 0) {
|
|
152
|
+
return "{}";
|
|
153
|
+
}
|
|
154
|
+
if (entries.length <= 10) {
|
|
155
|
+
const pairs = entries
|
|
156
|
+
.map(([key, val]) => `${safeJson(key)}:${repr(val, seen)}`)
|
|
157
|
+
.join(",");
|
|
158
|
+
return `{${pairs}}`;
|
|
159
|
+
}
|
|
160
|
+
const first = entries
|
|
161
|
+
.slice(0, 3)
|
|
162
|
+
.map(([key, val]) => `${safeJson(key)}:${repr(val, seen)}`);
|
|
163
|
+
const last = entries
|
|
164
|
+
.slice(-3)
|
|
165
|
+
.map(([key, val]) => `${safeJson(key)}:${repr(val, seen)}`);
|
|
166
|
+
return `{${[...first, "...", ...last].join(",")}}`;
|
|
167
|
+
}
|
|
168
|
+
function safeJson(value) {
|
|
169
|
+
try {
|
|
170
|
+
return JSON.stringify(value);
|
|
171
|
+
}
|
|
172
|
+
catch (error) {
|
|
173
|
+
/* v8 ignore next 4 -- @preserve */
|
|
174
|
+
if (error instanceof Error) {
|
|
175
|
+
return `[Unserializable: ${error.name}("${error.message}")]`;
|
|
176
|
+
}
|
|
177
|
+
/* v8 ignore next 1 -- @preserve */
|
|
178
|
+
return "[Unserializable]";
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
//# sourceMappingURL=describe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"describe.js","sourceRoot":"","sources":["../../src/describe/describe.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
+
export * from "./assert/identical/identical.assert.js";
|
|
1
2
|
export * from "./assert/non-nullable/non-nullable.assert.js";
|
|
2
3
|
export * from "./assert/not-empty/not-empty.assert.js";
|
|
4
|
+
export * from "./assert/number-between/number-between.assert.js";
|
|
5
|
+
export * from "./assert/number-to-nearest/number-to-nearest.assert.js";
|
|
3
6
|
export * from "./assert/one-of/one-of.assert.js";
|
|
7
|
+
export * from "./assert/type-bigint/type-bigint.assert.js";
|
|
8
|
+
export * from "./assert/type-boolean/type-boolean.assert.js";
|
|
9
|
+
export * from "./assert/type-function/type-function.assert.js";
|
|
10
|
+
export * from "./assert/type-number/type-number.assert.js";
|
|
11
|
+
export * from "./assert/type-numeric/type-numeric.assert.js";
|
|
12
|
+
export * from "./assert/type-object/type-object.assert.js";
|
|
13
|
+
export * from "./assert/type-string/type-string.assert.js";
|
|
4
14
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC;AACvD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,wDAAwD,CAAC;AACvE,cAAc,kCAAkC,CAAC;AACjD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
+
export * from "./assert/identical/identical.assert.js";
|
|
1
2
|
export * from "./assert/non-nullable/non-nullable.assert.js";
|
|
2
3
|
export * from "./assert/not-empty/not-empty.assert.js";
|
|
4
|
+
export * from "./assert/number-between/number-between.assert.js";
|
|
5
|
+
export * from "./assert/number-to-nearest/number-to-nearest.assert.js";
|
|
3
6
|
export * from "./assert/one-of/one-of.assert.js";
|
|
7
|
+
export * from "./assert/type-bigint/type-bigint.assert.js";
|
|
8
|
+
export * from "./assert/type-boolean/type-boolean.assert.js";
|
|
9
|
+
export * from "./assert/type-function/type-function.assert.js";
|
|
10
|
+
export * from "./assert/type-number/type-number.assert.js";
|
|
11
|
+
export * from "./assert/type-numeric/type-numeric.assert.js";
|
|
12
|
+
export * from "./assert/type-object/type-object.assert.js";
|
|
13
|
+
export * from "./assert/type-string/type-string.assert.js";
|
|
4
14
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC;AACvD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,wDAAwD,CAAC;AACvE,cAAc,kCAAkC,CAAC;AACjD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,4CAA4C,CAAC"}
|
package/package.json
CHANGED