@powfix/core-js 0.26.4 → 0.26.6
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/shared/interfaces/index.cjs +0 -36
- package/dist/shared/interfaces/index.d.ts +4 -4
- package/dist/shared/interfaces/index.js +0 -4
- package/dist/shared/types/If.d.ts +1 -1
- package/dist/shared/types/index.cjs +0 -27
- package/dist/shared/types/index.d.ts +3 -3
- package/dist/shared/types/index.js +0 -3
- package/package.json +1 -1
|
@@ -1,37 +1 @@
|
|
|
1
1
|
'use strict';
|
|
2
|
-
var Coordinate = require('./Coordinate');
|
|
3
|
-
var Point2 = require('./Point2');
|
|
4
|
-
var Point3 = require('./Point3');
|
|
5
|
-
var StorageProvider = require('./StorageProvider');
|
|
6
|
-
Object.keys(Coordinate).forEach(function(k) {
|
|
7
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
8
|
-
enumerable: true,
|
|
9
|
-
get: function get() {
|
|
10
|
-
return Coordinate[k];
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
|
-
});
|
|
14
|
-
Object.keys(Point2).forEach(function(k) {
|
|
15
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
16
|
-
enumerable: true,
|
|
17
|
-
get: function get() {
|
|
18
|
-
return Point2[k];
|
|
19
|
-
}
|
|
20
|
-
});
|
|
21
|
-
});
|
|
22
|
-
Object.keys(Point3).forEach(function(k) {
|
|
23
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
24
|
-
enumerable: true,
|
|
25
|
-
get: function get() {
|
|
26
|
-
return Point3[k];
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
|
-
});
|
|
30
|
-
Object.keys(StorageProvider).forEach(function(k) {
|
|
31
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
32
|
-
enumerable: true,
|
|
33
|
-
get: function get() {
|
|
34
|
-
return StorageProvider[k];
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './Coordinate.js';
|
|
2
|
-
export * from './Point2.js';
|
|
3
|
-
export * from './Point3.js';
|
|
4
|
-
export * from './StorageProvider.js';
|
|
1
|
+
export type * from './Coordinate.js';
|
|
2
|
+
export type * from './Point2.js';
|
|
3
|
+
export type * from './Point3.js';
|
|
4
|
+
export type * from './StorageProvider.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type If<C extends boolean, T, F = undefined> = C extends true ? T : F;
|
|
1
|
+
export type If<C extends boolean | undefined, T, F = undefined> = C extends true ? T : F;
|
|
@@ -1,28 +1 @@
|
|
|
1
1
|
'use strict';
|
|
2
|
-
var IntRage = require('./IntRage');
|
|
3
|
-
var PartialExcept = require('./PartialExcept');
|
|
4
|
-
var Object$1 = require('./Object');
|
|
5
|
-
Object.keys(IntRage).forEach(function(k) {
|
|
6
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
get: function get() {
|
|
9
|
-
return IntRage[k];
|
|
10
|
-
}
|
|
11
|
-
});
|
|
12
|
-
});
|
|
13
|
-
Object.keys(PartialExcept).forEach(function(k) {
|
|
14
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
15
|
-
enumerable: true,
|
|
16
|
-
get: function get() {
|
|
17
|
-
return PartialExcept[k];
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
});
|
|
21
|
-
Object.keys(Object$1).forEach(function(k) {
|
|
22
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
23
|
-
enumerable: true,
|
|
24
|
-
get: function get() {
|
|
25
|
-
return Object$1[k];
|
|
26
|
-
}
|
|
27
|
-
});
|
|
28
|
-
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type * from "./If.js";
|
|
2
|
-
export * from './IntRage.js';
|
|
3
|
-
export * from './PartialExcept.js';
|
|
4
|
-
export * from './Object.js';
|
|
2
|
+
export type * from './IntRage.js';
|
|
3
|
+
export type * from './PartialExcept.js';
|
|
4
|
+
export type * from './Object.js';
|
|
5
5
|
export type * from "./XOR.js";
|