range.js 213 B

1234567891011121314
  1. group(
  2. concat([
  3. "(",
  4. indent(
  5. options.tabWidth,
  6. concat([line, join(concat([",", line]), printed)])
  7. ),
  8. options.trailingComma ? "," : "",
  9. line,
  10. ")"
  11. ]),
  12. {shouldBreak: true}
  13. )