Parcourir la source

Add deepClone function

ApisNecros il y a 2 semaines
Parent
commit
30cbe52823
1 fichiers modifiés avec 11 ajouts et 0 suppressions
  1. 11 0
      common.js

+ 11 - 0
common.js

@@ -52,4 +52,15 @@ export function strToInt(string) {
  */
 export function clamp(value, min = -1, max = 1) {
     return Math.max(min, Math.min(max, value));
+}
+
+/**
+ * Deep clone a value
+ *
+ * @param {any} value
+ *
+ * @returns {any}
+ */
+export function deepClone(value) {
+    return JSON.parse(JSON.stringify(value));
 }