@indra.ai/deva 1.1.63 → 1.1.65

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.
Files changed (2) hide show
  1. package/index.js +5 -8
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1843,18 +1843,15 @@ class Deva {
1843
1843
  for copying.
1844
1844
  ***************/
1845
1845
  copy(obj) {
1846
- try {
1846
+ function walkData(data) {
1847
+ const output = Array.isArray(data) ? [] : {};
1847
1848
  let v, key;
1848
- const output = Array.isArray(obj) ? [] : {};
1849
- for (key in obj) {
1849
+ for (key in data) {
1850
1850
  v = obj[key];
1851
- output[key] = (typeof v === "object") ? this.copy(v) : v;
1851
+ output[key] = (typeof v === "object") ? walkData(v) : v;
1852
1852
  }
1853
- } catch (e) {
1854
- return this.error(e, obj)
1855
- } finally {
1856
- return output;
1857
1853
  }
1854
+ return walkData(obj);
1858
1855
  }
1859
1856
 
1860
1857
  /**************
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indra.ai/deva",
3
- "version": "1.1.63",
3
+ "version": "1.1.65",
4
4
  "description": "The Deva Core",
5
5
  "main": "index.js",
6
6
  "scripts": {