@augment-vir/common 31.71.2 → 31.71.3
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/index.d.ts
CHANGED
|
@@ -39,7 +39,6 @@ export * from './augments/log/log.js';
|
|
|
39
39
|
export * from './augments/log/logger.js';
|
|
40
40
|
export * from './augments/number/clamp.js';
|
|
41
41
|
export * from './augments/number/coords.js';
|
|
42
|
-
export * from './augments/number/digit.js';
|
|
43
42
|
export * from './augments/number/dimensions.js';
|
|
44
43
|
export * from './augments/number/number-conversion.js';
|
|
45
44
|
export * from './augments/number/round.js';
|
package/dist/index.js
CHANGED
|
@@ -39,7 +39,6 @@ export * from './augments/log/log.js';
|
|
|
39
39
|
export * from './augments/log/logger.js';
|
|
40
40
|
export * from './augments/number/clamp.js';
|
|
41
41
|
export * from './augments/number/coords.js';
|
|
42
|
-
export * from './augments/number/digit.js';
|
|
43
42
|
export * from './augments/number/dimensions.js';
|
|
44
43
|
export * from './augments/number/number-conversion.js';
|
|
45
44
|
export * from './augments/number/round.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@augment-vir/common",
|
|
3
|
-
"version": "31.71.
|
|
3
|
+
"version": "31.71.3",
|
|
4
4
|
"description": "A collection of augments, helpers types, functions, and classes for any JavaScript environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"augment",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"test:web": "virmator --no-deps test web"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@augment-vir/assert": "^31.71.
|
|
44
|
-
"@augment-vir/core": "^31.71.
|
|
43
|
+
"@augment-vir/assert": "^31.71.3",
|
|
44
|
+
"@augment-vir/core": "^31.71.3",
|
|
45
45
|
"@date-vir/duration": "^8.3.2",
|
|
46
46
|
"@paralleldrive/cuid2": "^3.3.0",
|
|
47
47
|
"ansi-styles": "^6.2.3",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* A union of all single digits in base 10.
|
|
3
|
-
*
|
|
4
|
-
* @category Number
|
|
5
|
-
* @category Package : @augment-vir/common
|
|
6
|
-
* @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
|
|
7
|
-
*/
|
|
8
|
-
export type Digit = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|