UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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