@bbn/bbn 1.0.61 → 1.0.62

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/bundle.js CHANGED
@@ -107,8 +107,8 @@
107
107
  }
108
108
  for (let a of args) {
109
109
  if (!a ||
110
- typeof a !== "object" ||
111
- Symbol.iterator in Object(a)) {
110
+ (typeof a !== "object") ||
111
+ !(Symbol.iterator in Object(a))) {
112
112
  return false;
113
113
  }
114
114
  }
@@ -29,8 +29,8 @@ const isIterable = function (...args) {
29
29
  }
30
30
  for (let a of args) {
31
31
  if (!a ||
32
- typeof a !== "object" ||
33
- Symbol.iterator in Object(a)) {
32
+ (typeof a !== "object") ||
33
+ !(Symbol.iterator in Object(a))) {
34
34
  return false;
35
35
  }
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",