@alwatr/deep-clone 5.5.14 โ 5.5.16
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/CHANGELOG.md +15 -0
- package/dist/main.cjs +2 -1
- package/dist/main.cjs.map +1 -1
- package/dist/main.mjs +2 -1
- package/dist/main.mjs.map +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.5.16](https://github.com/Alwatr/nanolib/compare/@alwatr/deep-clone@5.5.15...@alwatr/deep-clone@5.5.16) (2025-09-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @alwatr/deep-clone
|
|
9
|
+
|
|
10
|
+
## [5.5.15](https://github.com/Alwatr/nanolib/compare/@alwatr/deep-clone@5.5.14...@alwatr/deep-clone@5.5.15) (2025-09-20)
|
|
11
|
+
|
|
12
|
+
### ๐ Bug Fixes
|
|
13
|
+
|
|
14
|
+
* add sideEffects property to package.json files for better tree-shaking ([c7b9e74](https://github.com/Alwatr/nanolib/commit/c7b9e74e1920c8e35b438742de61883ca62da58c))
|
|
15
|
+
* add sideEffects property to package.json files for better tree-shaking ([e8402c4](https://github.com/Alwatr/nanolib/commit/e8402c481a14a1f807a37aaa862a936713d26176))
|
|
16
|
+
|
|
17
|
+
### ๐งน Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
* remove duplicate sideEffects property from multiple package.json files ([b123f86](https://github.com/Alwatr/nanolib/commit/b123f86be81481de2314aae9bb2eeb629743d24c))
|
|
20
|
+
|
|
6
21
|
## [5.5.14](https://github.com/Alwatr/nanolib/compare/@alwatr/deep-clone@5.5.13...@alwatr/deep-clone@5.5.14) (2025-09-19)
|
|
7
22
|
|
|
8
23
|
**Note:** Version bump only for package @alwatr/deep-clone
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/** ๐ฆ @alwatr/deep-clone v5.5.16 */
|
|
2
|
+
__dev_mode__: console.debug("๐ฆ @alwatr/deep-clone v5.5.16");
|
|
2
3
|
"use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __export=(target,all)=>{for(var name in all)__defProp(target,name,{get:all[name],enumerable:true})};var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};__export(main_exports,{deepClone:()=>deepClone});module.exports=__toCommonJS(main_exports);function deepClone(obj){if(obj==null)return null;return JSON.parse(JSON.stringify(obj))}0&&(module.exports={deepClone});
|
|
3
4
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.cjs.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
4
|
"sourcesContent": ["/**\n * Clone deeply nested objects and arrays.\n *\n * @param obj The object to clone.\n * @returns A clone of the object.\n * @example\n * ```typescript\n * const obj2 = deepClone(obj1);\n * ```\n */\nexport function deepClone<T>(obj: T): T;\n\n/**\n * Clone deeply nested objects and arrays.\n *\n * if the object is null or undefined, it returns null.\n *\n * @param obj The object to clone.\n * @returns A clone of the object.\n * @example\n * ```typescript\n * const obj2 = deepClone(obj1);\n * ```\n */\nexport function deepClone<T>(obj: T | null | undefined): T | null;\n\nexport function deepClone<T>(obj: T | null | undefined): T | null {\n if (obj == null) return null;\n // I don`t know why structuredClone is slower than stringify! but I think its changes in the future.\n // if (typeof structuredClone === 'function') {\n // return structuredClone(obj);\n // }\n // else\n return JSON.parse(JSON.stringify(obj));\n}\n"],
|
|
5
|
-
"mappings": "
|
|
5
|
+
"mappings": ";;qqBAAA,+GA0BO,SAAS,UAAa,IAAqC,CAChE,GAAI,KAAO,KAAM,OAAO,KAMxB,OAAO,KAAK,MAAM,KAAK,UAAU,GAAG,CAAC,CACvC",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/main.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/** ๐ฆ @alwatr/deep-clone v5.5.16 */
|
|
2
|
+
__dev_mode__: console.debug("๐ฆ @alwatr/deep-clone v5.5.16");
|
|
2
3
|
function deepClone(obj){if(obj==null)return null;return JSON.parse(JSON.stringify(obj))}export{deepClone};
|
|
3
4
|
//# sourceMappingURL=main.mjs.map
|
package/dist/main.mjs.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/main.ts"],
|
|
4
4
|
"sourcesContent": ["/**\n * Clone deeply nested objects and arrays.\n *\n * @param obj The object to clone.\n * @returns A clone of the object.\n * @example\n * ```typescript\n * const obj2 = deepClone(obj1);\n * ```\n */\nexport function deepClone<T>(obj: T): T;\n\n/**\n * Clone deeply nested objects and arrays.\n *\n * if the object is null or undefined, it returns null.\n *\n * @param obj The object to clone.\n * @returns A clone of the object.\n * @example\n * ```typescript\n * const obj2 = deepClone(obj1);\n * ```\n */\nexport function deepClone<T>(obj: T | null | undefined): T | null;\n\nexport function deepClone<T>(obj: T | null | undefined): T | null {\n if (obj == null) return null;\n // I don`t know why structuredClone is slower than stringify! but I think its changes in the future.\n // if (typeof structuredClone === 'function') {\n // return structuredClone(obj);\n // }\n // else\n return JSON.parse(JSON.stringify(obj));\n}\n"],
|
|
5
|
-
"mappings": "
|
|
5
|
+
"mappings": ";;AA0BO,SAAS,UAAa,IAAqC,CAChE,GAAI,KAAO,KAAM,OAAO,KAMxB,OAAO,KAAK,MAAM,KAAK,UAAU,GAAG,CAAC,CACvC",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/deep-clone",
|
|
3
3
|
"description": "Clone deeply nested objects and arrays in JavaScript.",
|
|
4
|
-
"version": "5.5.
|
|
4
|
+
"version": "5.5.16",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"bugs": "https://github.com/Alwatr/nanolib/issues",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@alwatr/nano-build": "6.
|
|
9
|
-
"@alwatr/prettier-config": "5.0.
|
|
10
|
-
"@alwatr/tsconfig-base": "6.0.
|
|
8
|
+
"@alwatr/nano-build": "6.3.1",
|
|
9
|
+
"@alwatr/prettier-config": "5.0.4",
|
|
10
|
+
"@alwatr/tsconfig-base": "6.0.2",
|
|
11
11
|
"typescript": "^5.9.2"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
@@ -69,7 +69,8 @@
|
|
|
69
69
|
"watch:es": "yarn run build:es --watch",
|
|
70
70
|
"watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
|
|
71
71
|
},
|
|
72
|
+
"sideEffects": false,
|
|
72
73
|
"type": "module",
|
|
73
74
|
"types": "./dist/main.d.ts",
|
|
74
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "912cbccc4aae450a2cd2bbb401b898e00af05386"
|
|
75
76
|
}
|