UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

13 lines (12 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StringUtils = void 0; class StringUtils { static replaceAll(text, find, replace) { while (text.includes(find)) { text = text.replace(find, replace); } return text; } } exports.StringUtils = StringUtils;