@bbn/bbn 2.0.179 → 2.0.180

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.
@@ -59,7 +59,6 @@ export default function stream(url, success, data, failure, abort, finished) {
59
59
  }
60
60
  }
61
61
  };
62
- const chrono = bbn.fn.startChrono();
63
62
  const loader = fetch(url, {
64
63
  method: 'POST', // *GET, POST, PUT, DELETE, etc.
65
64
  mode: 'cors', // no-cors, *cors, same-origin
@@ -75,7 +74,6 @@ export default function stream(url, success, data, failure, abort, finished) {
75
74
  body: JSON.stringify(data || {}) // body data type must match "Content-Type" header
76
75
  })
77
76
  .then(response => {
78
- bbn.fn.log("RESPONSE IN " + bbn.fn.stopChrono(chrono, true) + " SECS");
79
77
  if (response.body) {
80
78
  const reader = response.body.getReader();
81
79
  const isFn = isFunction(success);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "2.0.179",
3
+ "version": "2.0.180",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",