first commit

This commit is contained in:
Alexander Navarro 2025-04-11 16:01:28 -04:00
commit b23be55d42
838 changed files with 730684 additions and 0 deletions

10
node_modules/slug/cli.js generated vendored Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env node
import slug from './slug.js'
if (process.argv.length < 3) {
console.log('Usage: slug <string>')
process.exit(1)
}
console.log(slug(process.argv[2]))