UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

4 lines 232 B
import { endsWithIgnoreCase } from "./endsWithIgnoreCase"; export function removeEndIgnoreCase(text, remove) { return !text || !remove || !endsWithIgnoreCase(text, remove) ? text : text.substring(0, text.length - remove.length); }