@satoshibits/functional 1.0.2 → 1.0.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.mts +13 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @satoshibits/functional - Pure functional utilities
|
|
3
|
+
*/
|
|
4
|
+
export * from "./result.mjs";
|
|
5
|
+
export * from "./validation.mjs";
|
|
6
|
+
export * from "./composition.mjs";
|
|
7
|
+
export * from "./pipeline.mjs";
|
|
8
|
+
export * from "./array-utils.mjs";
|
|
9
|
+
export * from "./object-utils.mjs";
|
|
10
|
+
export * from "./predicates.mjs";
|
|
11
|
+
export * from "./types.mjs";
|
|
12
|
+
export * from "./performance.mjs";
|
|
13
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC"}
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @satoshibits/functional - Pure functional utilities
|
|
4
|
+
*/
|
|
5
|
+
// re-export everything for full access
|
|
6
|
+
export * from "./result.mjs";
|
|
7
|
+
export * from "./validation.mjs";
|
|
8
|
+
export * from "./composition.mjs";
|
|
9
|
+
export * from "./pipeline.mjs";
|
|
10
|
+
export * from "./array-utils.mjs";
|
|
11
|
+
export * from "./object-utils.mjs";
|
|
12
|
+
export * from "./predicates.mjs";
|
|
13
|
+
export * from "./types.mjs";
|
|
14
|
+
export * from "./performance.mjs";
|
|
15
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":";AAAA;;GAEG;AAEH,uCAAuC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC"}
|