@ekim088/toolkit 0.1.0 → 0.1.2
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/lib/@types/index.d.ts +8 -19
- package/lib/index.js +8 -18
- package/package.json +5 -1
package/lib/@types/index.d.ts
CHANGED
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
declare const _default: {
|
|
10
|
-
clone: typeof clone;
|
|
11
|
-
isBoolean: typeof isBoolean;
|
|
12
|
-
isDeepEqual: typeof isDeepEqual;
|
|
13
|
-
isNumber: typeof isNumber;
|
|
14
|
-
isObject: typeof isObject;
|
|
15
|
-
isString: typeof isString;
|
|
16
|
-
memoizeOne: typeof memoizeOne;
|
|
17
|
-
merge: typeof merge;
|
|
18
|
-
};
|
|
19
|
-
export default _default;
|
|
1
|
+
export { default as clone } from './clone';
|
|
2
|
+
export { default as isBoolean } from './isBoolean';
|
|
3
|
+
export { default as isDeepEqual } from './isDeepEqual';
|
|
4
|
+
export { default as isNumber } from './isNumber';
|
|
5
|
+
export { default as isObject } from './isObject';
|
|
6
|
+
export { default as isString } from './isString';
|
|
7
|
+
export { default as memoizeOne } from './memoizeOne';
|
|
8
|
+
export { default as merge } from './merge';
|
|
20
9
|
export * from './typeUtils';
|
package/lib/index.js
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export default {
|
|
10
|
-
clone,
|
|
11
|
-
isBoolean,
|
|
12
|
-
isDeepEqual,
|
|
13
|
-
isNumber,
|
|
14
|
-
isObject,
|
|
15
|
-
isString,
|
|
16
|
-
memoizeOne,
|
|
17
|
-
merge,
|
|
18
|
-
};
|
|
1
|
+
export { default as clone } from './clone';
|
|
2
|
+
export { default as isBoolean } from './isBoolean';
|
|
3
|
+
export { default as isDeepEqual } from './isDeepEqual';
|
|
4
|
+
export { default as isNumber } from './isNumber';
|
|
5
|
+
export { default as isObject } from './isObject';
|
|
6
|
+
export { default as isString } from './isString';
|
|
7
|
+
export { default as memoizeOne } from './memoizeOne';
|
|
8
|
+
export { default as merge } from './merge';
|
|
19
9
|
export * from './typeUtils';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ekim088/toolkit",
|
|
3
3
|
"description": "A simple utility library.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"author": "ekim088 <edward@cyberbird.co>",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
@@ -40,6 +40,10 @@
|
|
|
40
40
|
"typescript-eslint": "^8.32.1",
|
|
41
41
|
"vitest": "^3.1.4"
|
|
42
42
|
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/ekim088/toolkit.git"
|
|
46
|
+
},
|
|
43
47
|
"volta": {
|
|
44
48
|
"node": "22.16.0",
|
|
45
49
|
"yarn": "4.9.1"
|