@faasjs/deep_merge 0.0.4-beta.9 → 0.0.5-beta.2

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/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  // src/index.ts
4
- var shouldMerge = function(item) {
4
+ var shouldMerge = (item) => {
5
5
  const type = Object.prototype.toString.call(item);
6
6
  return type === "[object Object]" || type === "[object Array]";
7
7
  };
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/index.ts
2
- var shouldMerge = function(item) {
2
+ var shouldMerge = (item) => {
3
3
  const type = Object.prototype.toString.call(item);
4
4
  return type === "[object Object]" || type === "[object Array]";
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/deep_merge",
3
- "version": "0.0.4-beta.9",
3
+ "version": "0.0.5-beta.2",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",