Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
604 B
Plaintext
16 lines
604 B
Plaintext
/**
|
|
* Ono supports custom formatters for error messages. In Node.js, it defaults
|
|
* to the `util.format()` function. In browsers, it defaults to `Array.join()`.
|
|
*
|
|
* The Node.js functionality can be used in a web browser via a polyfill,
|
|
* such as "format-util".
|
|
*
|
|
* @see https://github.com/tmpfs/format-util
|
|
*/
|
|
export const format = false;
|
|
/**
|
|
* The `util.inspect()` functionality only applies to Node.js.
|
|
* We return the constant `false` here so that the Node-specific code gets removed by tree-shaking.
|
|
*/
|
|
export const addInspectMethod = false;
|
|
//# sourceMappingURL=isomorphic.browser.js.map |