Closed jcubic closed 2 years ago
The methods chain needs to be refactored since:
this works:
let x = ((<<<TEXT
this
is
text
TEXT)).toUpperCase().replace(/this\n/i, "")
and this doesn't
let x = (<<<TEXT
this
is
text
TEXT.toUpperCase()).replace(/this\n/i, "")
Not sure how this should be implemented.