the-forest/client/node_modules/@tanstack/react-query/build/legacy/utils.js
2024-09-17 20:35:18 -04:00

14 lines
261 B
JavaScript

// src/utils.ts
function shouldThrowError(throwError, params) {
if (typeof throwError === "function") {
return throwError(...params);
}
return !!throwError;
}
function noop() {
}
export {
noop,
shouldThrowError
};
//# sourceMappingURL=utils.js.map