Changeset e29cc2e for trip-planner-front/node_modules/klona/lite/index.mjs
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/klona/lite/index.mjs
r59329aa re29cc2e 8 8 tmp = new x.constructor(); 9 9 for (k in x) { 10 if ( tmp.hasOwnProperty(k) && tmp[k] !== x[k]) {10 if (x.hasOwnProperty(k) && tmp[k] !== x[k]) { 11 11 tmp[k] = klona(x[k]); 12 12 }
Note:
See TracChangeset
for help on using the changeset viewer.