z icon indicating copy to clipboard operation
z copied to clipboard

Multi-Character global condition match failure

Open shadowmouse opened this issue 6 years ago • 0 comments

I'm running into what may be a conceptual issue rather than an actual issue. Are multi-character match variables supported?

E.g.

let string = "test"; match(string)( (s) => { console.log(s); } )

Executes as expected logging

test

but

let string = "test"; match(string)( (str) => { console.log(str); } )

generates no output.

shadowmouse avatar Jan 28 '20 16:01 shadowmouse