9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
'use strict';
|
|
|
|
const isBaseQueryError = (error)=>{
|
|
return typeof error !== 'undefined' && error.name !== undefined;
|
|
};
|
|
|
|
exports.isBaseQueryError = isBaseQueryError;
|
|
//# sourceMappingURL=api.js.map
|