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.
@@ -2,22 +2,26 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const isSymbol = require('../_chunk/isSymbol-CxBVKi.js');
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
- exports.isEqual = isSymbol.isEqual;
13
- exports.isFunction = isSymbol.isFunction;
14
- exports.isLength = isSymbol.isLength;
15
- exports.isNil = isSymbol.isNil;
16
- exports.isNotNil = isSymbol.isNotNil;
17
- exports.isNull = isSymbol.isNull;
18
- exports.isSymbol = isSymbol.isSymbol;
19
- exports.isUndefined = isSymbol.isUndefined;
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.411+4af06620",
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": {