chore: reset history

This commit is contained in:
grngxd 2025-06-24 13:32:46 +01:00
commit 3a0b1a80c8
10 changed files with 355 additions and 0 deletions

13
index.ts Normal file
View file

@ -0,0 +1,13 @@
import { Command } from 'commander';
import { registerCommands } from './cmd';
const program = new Command();
program
.name('string-util')
.description('CLI to some JavaScript string utilities')
.version('0.8.0');
registerCommands(program);
program.parse();