swc_atoms 9.0.3

Atoms for the swc project.
Documentation
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env node
'use strict';

const fs = require('node:fs');

const input = fs.readFileSync(0, 'utf8');
const lines = input.match(/[^\n]*\n|[^\n]+/g) ?? [];

lines.sort();
process.stdout.write(lines.join(''));