VroomUtils.replaceFirst = function (text, s, t) {
if (text !== null && text.indexOf(s) !== -1) {
text = text.replace(s, t);
}
return text;
};
VroomUtils.replaceAll = function (text, s, t) {
if (text !== null) {
while(text.indexOf(s) !== -1) {
text = text.replace(s, t);
}
}
return text;
};