es-toolkit 1.21.0-dev.681 → 1.21.0-dev.683
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/_chunk/{flow-Au34h2.js → flowRight-BzdOZX.js} +5 -0
- package/dist/browser.global.js +1 -1
- package/dist/browser.global.js.map +1 -1
- package/dist/compat/index.d.mts +1 -0
- package/dist/compat/index.d.ts +1 -0
- package/dist/compat/index.js +16 -15
- package/dist/compat/index.mjs +1 -0
- package/dist/function/flow.d.mts +21 -7
- package/dist/function/flow.d.ts +21 -7
- package/dist/function/flowRight.d.mts +144 -0
- package/dist/function/flowRight.d.ts +144 -0
- package/dist/function/flowRight.mjs +7 -0
- package/dist/function/index.d.mts +1 -0
- package/dist/function/index.d.ts +1 -0
- package/dist/function/index.js +16 -15
- package/dist/function/index.mjs +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +15 -14
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
5
5
|
const zipWith = require('./_chunk/zipWith-EOU_KZ.js');
|
|
6
6
|
const array_index = require('./array/index.js');
|
|
7
7
|
const promise_index = require('./_chunk/index-BGZDR9.js');
|
|
8
|
-
const
|
|
8
|
+
const flowRight = require('./_chunk/flowRight-BzdOZX.js');
|
|
9
9
|
const function_index = require('./function/index.js');
|
|
10
10
|
const range = require('./_chunk/range-BXlMmn.js');
|
|
11
11
|
const randomInt = require('./_chunk/randomInt-CF7bZK.js');
|
|
@@ -81,19 +81,20 @@ exports.TimeoutError = promise_index.TimeoutError;
|
|
|
81
81
|
exports.delay = promise_index.delay;
|
|
82
82
|
exports.timeout = promise_index.timeout;
|
|
83
83
|
exports.withTimeout = promise_index.withTimeout;
|
|
84
|
-
exports.after =
|
|
85
|
-
exports.ary =
|
|
86
|
-
exports.before =
|
|
87
|
-
exports.debounce =
|
|
88
|
-
exports.flow =
|
|
89
|
-
exports.
|
|
90
|
-
exports.
|
|
91
|
-
exports.
|
|
92
|
-
exports.
|
|
93
|
-
exports.
|
|
94
|
-
exports.
|
|
95
|
-
exports.
|
|
96
|
-
exports.
|
|
84
|
+
exports.after = flowRight.after;
|
|
85
|
+
exports.ary = flowRight.ary;
|
|
86
|
+
exports.before = flowRight.before;
|
|
87
|
+
exports.debounce = flowRight.debounce;
|
|
88
|
+
exports.flow = flowRight.flow;
|
|
89
|
+
exports.flowRight = flowRight.flowRight;
|
|
90
|
+
exports.memoize = flowRight.memoize;
|
|
91
|
+
exports.negate = flowRight.negate;
|
|
92
|
+
exports.noop = flowRight.noop;
|
|
93
|
+
exports.once = flowRight.once;
|
|
94
|
+
exports.partial = flowRight.partial;
|
|
95
|
+
exports.partialRight = flowRight.partialRight;
|
|
96
|
+
exports.rest = flowRight.rest;
|
|
97
|
+
exports.unary = flowRight.unary;
|
|
97
98
|
exports.curry = function_index.curry;
|
|
98
99
|
exports.spread = function_index.spread;
|
|
99
100
|
exports.throttle = function_index.throttle;
|
package/dist/index.mjs
CHANGED
|
@@ -72,6 +72,7 @@ export { rest } from './function/rest.mjs';
|
|
|
72
72
|
export { curry } from './function/curry.mjs';
|
|
73
73
|
export { spread } from './function/spread.mjs';
|
|
74
74
|
export { flow } from './function/flow.mjs';
|
|
75
|
+
export { flowRight } from './function/flowRight.mjs';
|
|
75
76
|
export { clamp } from './math/clamp.mjs';
|
|
76
77
|
export { inRange } from './math/inRange.mjs';
|
|
77
78
|
export { mean } from './math/mean.mjs';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-toolkit",
|
|
3
3
|
"description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
|
|
4
|
-
"version": "1.21.0-dev.
|
|
4
|
+
"version": "1.21.0-dev.683+55539081",
|
|
5
5
|
"homepage": "https://es-toolkit.slash.page",
|
|
6
6
|
"bugs": "https://github.com/toss/es-toolkit/issues",
|
|
7
7
|
"repository": {
|