UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 248 B
import { startsWith } from "./startsWith"; export function startsWithAny(text, prefixes) { if (!text || !prefixes || !prefixes.length) { return false; } return prefixes.some(function (prefix) { return startsWith(text, prefix); }); }