UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

9 lines (8 loc) 199 B
export class StringUtils { static replaceAll(text: string, find: string, replace: string) { while (text.includes(find)) { text = text.replace(find, replace); } return text; } }