UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

7 lines 206 B
export function substringBeforeLast(text, separator) { if (!text || !separator) { return text; } var index = text.lastIndexOf(separator); return index === -1 ? text : text.substring(0, index); }