UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 280 B
import { endsWithIgnoreCase } from "./endsWithIgnoreCase"; export function endsWithAnyIgnoreCase(text, suffixes) { if (!text || !suffixes || !suffixes.length) { return false; } return suffixes.some(function (suffix) { return endsWithIgnoreCase(text, suffix); }); }