1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

One final change, match is likely better than matchAll due to the global nature of the regex and its lack of capture groups currently (in workflow mustache cleansing).

This commit is contained in:
mike12345567 2020-09-22 10:33:25 +01:00
parent b5f42384e3
commit c0442b25e1

View file

@ -10,10 +10,10 @@ function cleanMustache(string) {
"]": "",
}
let regex = new RegExp(/{{[^}}]*}}/g)
for (let match of string.matchAll(regex)) {
for (let match of string.match(regex)) {
let baseIdx = string.indexOf(match)
for (let key of Object.keys(charToReplace)) {
let idxChar = match[0].indexOf(key)
let idxChar = match.indexOf(key)
if (idxChar !== -1) {
string =
string.slice(baseIdx, baseIdx + idxChar) +