bughelp wanted
仓库指标
- Star
- (1,714 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
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.