UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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