ipatalas / vscode-postfix-ts

Postfix notation for TypeScript/Javascript - extension for VS Code
MIT License
159 stars 43 forks source link

no `new` builtin postfix within arrow callback #109

Closed zardoy closed 1 year ago

zardoy commented 1 year ago
fn = () => {
    throw b.new
}

or just

fn = () => {
    b.new
}