refactor(projects): replace cloneDeep of lodash-es with klona

This commit is contained in:
Soybean
2024-07-20 02:14:20 +08:00
parent 3e2a993db8
commit a91335d74b
7 changed files with 18 additions and 12 deletions

View File

@ -12,6 +12,7 @@
"dependencies": {
"colord": "2.9.3",
"crypto-js": "4.2.0",
"klona": "2.0.6",
"localforage": "1.10.0",
"nanoid": "5.0.7"
},

View File

@ -1,3 +1,4 @@
export * from './crypto';
export * from './storage';
export * from './nanoid';
export * from './klona';

View File

@ -0,0 +1,3 @@
import { klona as jsonClone } from 'klona/json';
export { jsonClone };