UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

3 lines 238 B
export function replaceFirstIgnoreCase(text, search, replace) { return !text || !search ? text : text === null || text === void 0 ? void 0 : text.replace(new RegExp(search, 'i'), replace !== null && replace !== void 0 ? replace : ''); }