@fncts/typelevel 0.0.14 → 0.0.15
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/Check.d.ts +1 -0
- package/_cjs/HKT.cjs +0 -5
- package/_cjs/HKT.cjs.map +1 -1
- package/_cjs/index.cjs +0 -22
- package/_mjs/HKT.mjs +0 -5
- package/_mjs/HKT.mjs.map +1 -1
- package/_mjs/index.mjs.map +1 -1
- package/_src/Check.ts +2 -0
- package/package.json +1 -1
package/Check.d.ts
CHANGED
package/_cjs/HKT.cjs
CHANGED
|
@@ -8,12 +8,10 @@ exports.unifyFK1 = unifyFK1;
|
|
|
8
8
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
9
9
|
var HKT;
|
|
10
10
|
exports.HKT = HKT;
|
|
11
|
-
|
|
12
11
|
(function (HKT) {
|
|
13
12
|
/*
|
|
14
13
|
* Instance util
|
|
15
14
|
*/
|
|
16
|
-
|
|
17
15
|
/**
|
|
18
16
|
* @tsplus macro identity
|
|
19
17
|
*/
|
|
@@ -21,14 +19,11 @@ exports.HKT = HKT;
|
|
|
21
19
|
// @ts-expect-error: typelevel utility
|
|
22
20
|
return _;
|
|
23
21
|
}
|
|
24
|
-
|
|
25
22
|
HKT.instance = instance;
|
|
26
23
|
})(HKT || (exports.HKT = HKT = {}));
|
|
27
24
|
/**
|
|
28
25
|
* @tsplus unify fncts.HKT.FK1
|
|
29
26
|
*/
|
|
30
|
-
|
|
31
|
-
|
|
32
27
|
function unifyFK1(_) {
|
|
33
28
|
return _;
|
|
34
29
|
}
|
package/_cjs/HKT.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HKT.cjs","names":["HKT","instance","_","unifyFK1"],"sources":["../esm/HKT.js"],"sourcesContent":["// eslint-disable-next-line @typescript-eslint/no-namespace\nexport var HKT;\n(function (HKT) {\n /*\n * Instance util\n */\n /**\n * @tsplus macro identity\n */\n function instance(_) {\n // @ts-expect-error: typelevel utility\n return _;\n }\n HKT.instance = instance;\n})(HKT || (HKT = {}));\n/**\n * @tsplus unify fncts.HKT.FK1\n */\nexport function unifyFK1(_) {\n return _;\n}\n"],"mappings":";;;;;;;AAAA;AACO,IAAIA,
|
|
1
|
+
{"version":3,"file":"HKT.cjs","names":["HKT","instance","_","unifyFK1"],"sources":["../esm/HKT.js"],"sourcesContent":["// eslint-disable-next-line @typescript-eslint/no-namespace\nexport var HKT;\n(function (HKT) {\n /*\n * Instance util\n */\n /**\n * @tsplus macro identity\n */\n function instance(_) {\n // @ts-expect-error: typelevel utility\n return _;\n }\n HKT.instance = instance;\n})(HKT || (HKT = {}));\n/**\n * @tsplus unify fncts.HKT.FK1\n */\nexport function unifyFK1(_) {\n return _;\n}\n"],"mappings":";;;;;;;AAAA;AACO,IAAIA,GAAG;AAAC;AACf,CAAC,UAAUA,GAAG,EAAE;EACZ;AACJ;AACA;EACI;AACJ;AACA;EACI,SAASC,QAAQ,CAACC,CAAC,EAAE;IACjB;IACA,OAAOA,CAAC;EACZ;EACAF,GAAG,CAACC,QAAQ,GAAGA,QAAQ;AAC3B,CAAC,EAAED,GAAG,mBAAKA,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;AACrB;AACA;AACA;AACO,SAASG,QAAQ,CAACD,CAAC,EAAE;EACxB,OAAOA,CAAC;AACZ"}
|
package/_cjs/index.cjs
CHANGED
|
@@ -4,48 +4,26 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.Union = exports.String = exports.Object = exports.Number = exports.List = exports.Iteration = exports.Intersection = exports.Function = exports.Boolean = exports.Any = void 0;
|
|
7
|
-
|
|
8
7
|
var _Any = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Any.cjs"));
|
|
9
|
-
|
|
10
8
|
exports.Any = _Any;
|
|
11
|
-
|
|
12
9
|
var _Boolean = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Boolean.cjs"));
|
|
13
|
-
|
|
14
10
|
exports.Boolean = _Boolean;
|
|
15
|
-
|
|
16
11
|
var _Function = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Function.cjs"));
|
|
17
|
-
|
|
18
12
|
exports.Function = _Function;
|
|
19
|
-
|
|
20
13
|
var _Intersection = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Intersection.cjs"));
|
|
21
|
-
|
|
22
14
|
exports.Intersection = _Intersection;
|
|
23
|
-
|
|
24
15
|
var _Iteration = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Iteration.cjs"));
|
|
25
|
-
|
|
26
16
|
exports.Iteration = _Iteration;
|
|
27
|
-
|
|
28
17
|
var _List = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./List.cjs"));
|
|
29
|
-
|
|
30
18
|
exports.List = _List;
|
|
31
|
-
|
|
32
19
|
var _Number = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Number.cjs"));
|
|
33
|
-
|
|
34
20
|
exports.Number = _Number;
|
|
35
|
-
|
|
36
21
|
var _Object = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Object.cjs"));
|
|
37
|
-
|
|
38
22
|
exports.Object = _Object;
|
|
39
|
-
|
|
40
23
|
var _String = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./String.cjs"));
|
|
41
|
-
|
|
42
24
|
exports.String = _String;
|
|
43
|
-
|
|
44
25
|
var _Union = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("./Union.cjs"));
|
|
45
|
-
|
|
46
26
|
exports.Union = _Union;
|
|
47
|
-
|
|
48
27
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
49
|
-
|
|
50
28
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
51
29
|
//# sourceMappingURL=index.cjs.map
|
package/_mjs/HKT.mjs
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
2
2
|
export var HKT;
|
|
3
|
-
|
|
4
3
|
(function (HKT) {
|
|
5
4
|
/*
|
|
6
5
|
* Instance util
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
7
|
/**
|
|
10
8
|
* @tsplus macro identity
|
|
11
9
|
*/
|
|
@@ -13,14 +11,11 @@ export var HKT;
|
|
|
13
11
|
// @ts-expect-error: typelevel utility
|
|
14
12
|
return _;
|
|
15
13
|
}
|
|
16
|
-
|
|
17
14
|
HKT.instance = instance;
|
|
18
15
|
})(HKT || (HKT = {}));
|
|
19
16
|
/**
|
|
20
17
|
* @tsplus unify fncts.HKT.FK1
|
|
21
18
|
*/
|
|
22
|
-
|
|
23
|
-
|
|
24
19
|
export function unifyFK1(_) {
|
|
25
20
|
return _;
|
|
26
21
|
}
|
package/_mjs/HKT.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HKT.mjs","names":["HKT","instance","_","unifyFK1"],"sources":["../esm/HKT.js"],"sourcesContent":["// eslint-disable-next-line @typescript-eslint/no-namespace\nexport var HKT;\n(function (HKT) {\n /*\n * Instance util\n */\n /**\n * @tsplus macro identity\n */\n function instance(_) {\n // @ts-expect-error: typelevel utility\n return _;\n }\n HKT.instance = instance;\n})(HKT || (HKT = {}));\n/**\n * @tsplus unify fncts.HKT.FK1\n */\nexport function unifyFK1(_) {\n return _;\n}\n"],"mappings":"AAAA;AACA,OAAO,IAAIA,
|
|
1
|
+
{"version":3,"file":"HKT.mjs","names":["HKT","instance","_","unifyFK1"],"sources":["../esm/HKT.js"],"sourcesContent":["// eslint-disable-next-line @typescript-eslint/no-namespace\nexport var HKT;\n(function (HKT) {\n /*\n * Instance util\n */\n /**\n * @tsplus macro identity\n */\n function instance(_) {\n // @ts-expect-error: typelevel utility\n return _;\n }\n HKT.instance = instance;\n})(HKT || (HKT = {}));\n/**\n * @tsplus unify fncts.HKT.FK1\n */\nexport function unifyFK1(_) {\n return _;\n}\n"],"mappings":"AAAA;AACA,OAAO,IAAIA,GAAG;AACd,CAAC,UAAUA,GAAG,EAAE;EACZ;AACJ;AACA;EACI;AACJ;AACA;EACI,SAASC,QAAQ,CAACC,CAAC,EAAE;IACjB;IACA,OAAOA,CAAC;EACZ;EACAF,GAAG,CAACC,QAAQ,GAAGA,QAAQ;AAC3B,CAAC,EAAED,GAAG,KAAKA,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;AACrB;AACA;AACA;AACA,OAAO,SAASG,QAAQ,CAACD,CAAC,EAAE;EACxB,OAAOA,CAAC;AACZ"}
|
package/_mjs/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["Any","Boolean","Function","Intersection","Iteration","List","Number","Object","String","Union"],"sources":["../esm/index.js"],"sourcesContent":["export * as Any from \"./Any.js\";\nexport * as Boolean from \"./Boolean.js\";\nexport * as Function from \"./Function.js\";\nexport * as Intersection from \"./Intersection.js\";\nexport * as Iteration from \"./Iteration.js\";\nexport * as List from \"./List.js\";\nexport * as Number from \"./Number.js\";\nexport * as Object from \"./Object.js\";\nexport * as String from \"./String.js\";\nexport * as Union from \"./Union.js\";\n"],"mappings":"AAAA,OAAO,KAAKA,
|
|
1
|
+
{"version":3,"file":"index.mjs","names":["Any","Boolean","Function","Intersection","Iteration","List","Number","Object","String","Union"],"sources":["../esm/index.js"],"sourcesContent":["export * as Any from \"./Any.js\";\nexport * as Boolean from \"./Boolean.js\";\nexport * as Function from \"./Function.js\";\nexport * as Intersection from \"./Intersection.js\";\nexport * as Iteration from \"./Iteration.js\";\nexport * as List from \"./List.js\";\nexport * as Number from \"./Number.js\";\nexport * as Object from \"./Object.js\";\nexport * as String from \"./String.js\";\nexport * as Union from \"./Union.js\";\n"],"mappings":"AAAA,OAAO,KAAKA,GAAG,MAAM,WAAU;AAC/B,OAAO,KAAKC,OAAO,MAAM,eAAc;AACvC,OAAO,KAAKC,QAAQ,MAAM,gBAAe;AACzC,OAAO,KAAKC,YAAY,MAAM,oBAAmB;AACjD,OAAO,KAAKC,SAAS,MAAM,iBAAgB;AAC3C,OAAO,KAAKC,IAAI,MAAM,YAAW;AACjC,OAAO,KAAKC,MAAM,MAAM,cAAa;AACrC,OAAO,KAAKC,MAAM,MAAM,cAAa;AACrC,OAAO,KAAKC,MAAM,MAAM,cAAa;AACrC,OAAO,KAAKC,KAAK,MAAM,aAAY"}
|
package/_src/Check.ts
CHANGED