es-toolkit 1.14.0-dev.411 → 1.14.0-dev.413
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/{initial-BTjf8u.js → initial-CBsbzo.js} +0 -37
- package/dist/_chunk/{isSymbol-CxBVKi.js → isFunction-D0hq6d.js} +0 -5
- package/dist/array/index.js +38 -2
- package/dist/browser.global.js +1 -1
- package/dist/browser.global.js.map +1 -1
- package/dist/compat/_internal/getPath.mjs +26 -0
- package/dist/compat/_internal/isKey.mjs +16 -0
- package/dist/compat/array/orderBy.d.mts +34 -0
- package/dist/compat/array/orderBy.d.ts +34 -0
- package/dist/compat/array/orderBy.mjs +50 -0
- package/dist/compat/index.d.mts +2 -2
- package/dist/compat/index.d.ts +2 -2
- package/dist/compat/index.js +124 -38
- package/dist/compat/index.mjs +2 -2
- package/dist/compat/predicate/isSymbol.d.mts +17 -0
- package/dist/compat/predicate/isSymbol.d.ts +17 -0
- package/dist/compat/predicate/isSymbol.mjs +5 -0
- package/dist/index.js +11 -11
- package/dist/object/mergeWith.d.mts +2 -8
- package/dist/object/mergeWith.d.ts +2 -8
- package/dist/predicate/index.js +13 -9
- package/package.json +1 -1
package/dist/predicate/index.js
CHANGED
|
@@ -2,22 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
4
|
|
|
5
|
-
const
|
|
5
|
+
const isFunction = require('../_chunk/isFunction-D0hq6d.js');
|
|
6
6
|
const isTypedArray = require('../_chunk/isTypedArray-BBEkFl.js');
|
|
7
7
|
|
|
8
8
|
function isBoolean(x) {
|
|
9
9
|
return typeof x === 'boolean';
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
12
|
+
function isSymbol(value) {
|
|
13
|
+
return typeof value === 'symbol';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
exports.isEqual = isFunction.isEqual;
|
|
17
|
+
exports.isFunction = isFunction.isFunction;
|
|
18
|
+
exports.isLength = isFunction.isLength;
|
|
19
|
+
exports.isNil = isFunction.isNil;
|
|
20
|
+
exports.isNotNil = isFunction.isNotNil;
|
|
21
|
+
exports.isNull = isFunction.isNull;
|
|
22
|
+
exports.isUndefined = isFunction.isUndefined;
|
|
20
23
|
exports.isPlainObject = isTypedArray.isPlainObject;
|
|
21
24
|
exports.isPrimitive = isTypedArray.isPrimitive;
|
|
22
25
|
exports.isTypedArray = isTypedArray.isTypedArray;
|
|
23
26
|
exports.isBoolean = isBoolean;
|
|
27
|
+
exports.isSymbol = isSymbol;
|
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.14.0-dev.
|
|
4
|
+
"version": "1.14.0-dev.413+8912165e",
|
|
5
5
|
"homepage": "https://es-toolkit.slash.page",
|
|
6
6
|
"bugs": "https://github.com/toss/es-toolkit/issues",
|
|
7
7
|
"repository": {
|