UNPKG

@scriptables/manifest

Version:

Utilities to generate, parse, and update manifest headers in Scriptable scripts.

6 lines (4 loc) 175 B
import {REGEXP_BANNER_MANIFEST} from './bannerManifestRegex'; export function hasBannerManifest(script: string): boolean { return !!script.match(REGEXP_BANNER_MANIFEST); }