Files
Gemini-Search/node_modules/@tanstack/react-query/build/modern/utils.js
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00: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