UNPKG

telefunc

Version:

Remote functions. Instead of API.

8 lines (7 loc) 218 B
export { assertIsNotBrowser }; import { isBrowser } from './isBrowser.js'; import { assert } from './assert.js'; /** Ensure we don't bloat the client-side */ function assertIsNotBrowser() { assert(!isBrowser()); }