prettier/tests/literal/number.js

5 lines
114 B
JavaScript

// parentheses around numeric literal should be preserved
function test5(): string {
return (100).toString();
}