@bbn/bbn 1.0.311 → 1.0.313
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/bbn.js +1 -1
- package/dist/bbn.js.map +1 -1
- package/dist/fn/ajax/ajax.js +0 -2
- package/package.json +1 -1
package/dist/fn/ajax/ajax.js
CHANGED
|
@@ -2,7 +2,6 @@ import isObject from '../type/isObject.js';
|
|
|
2
2
|
import replaceAll from '../string/replaceAll.js';
|
|
3
3
|
import getRequestId from './getRequestId.js';
|
|
4
4
|
import getLoader from './getLoader.js';
|
|
5
|
-
import log from '../browser/log.js';
|
|
6
5
|
import extend from '../object/extend.js';
|
|
7
6
|
import numProperties from '../object/numProperties.js';
|
|
8
7
|
import _deleteLoader from './_deleteLoader.js';
|
|
@@ -102,7 +101,6 @@ export default function ajax(url, datatype, data, success, failure, abort) {
|
|
|
102
101
|
var requestId_1 = getRequestId(url, data, datatype);
|
|
103
102
|
var loaderObj = getLoader(requestId_1);
|
|
104
103
|
if (loaderObj === null || loaderObj === void 0 ? void 0 : loaderObj.loader) {
|
|
105
|
-
log("LOADER EXISTS", loaderObj);
|
|
106
104
|
return loaderObj.loader;
|
|
107
105
|
}
|
|
108
106
|
if (bbn.env.token) {
|