UNPKG

214 BPlain TextView Raw
1import { BrowserBuildFormat } from "./types";
2
3export function isBrowserFormat(value: unknown): value is BrowserBuildFormat {
4 return !!value && (
5 value === "iife" || value === "amd" || value === "umd"
6 );
7}