UNPKG

@thepassle/app-tools

Version:

Collection of tools I regularly use to build apps. Maybe they're useful to somebody else. Maybe not. Most of these are thin wrappers around native API's, like the native `<dialog>` element, `fetch` API, and `URLPattern`.

10 lines (9 loc) 153 B
export const DEV = false; export const PROD = true; export let ENV = 'prod'; /** * @param {string} env */ export function setEnv(env) { ENV = env; }