-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcli.js
executable file
·64 lines (59 loc) · 1.6 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env node
import process from 'node:process'
import fs from 'node:fs'
import {URL} from 'node:url'
import {diceCoefficient} from './index.js'
/** @type {Record<string, unknown>} */
const pack = JSON.parse(
String(fs.readFileSync(new URL('package.json', import.meta.url)))
)
const argv = process.argv.slice(2)
if (argv.includes('--help') || argv.includes('-h')) {
console.log(help())
} else if (argv.includes('--version') || argv.includes('-v')) {
console.log(pack.version)
} else if (argv.length === 0) {
process.stdin.resume()
process.stdin.setEncoding('utf8')
process.stdin.on('data', function (data) {
getEditDistance(String(data).trim().split(/\s+/g))
})
} else {
getEditDistance(argv.join(' ').split(/\s+/g))
}
/**
* @param {Array.<string>} values
*/
function getEditDistance(values) {
if (values.length === 2) {
console.log(diceCoefficient(values[0], values[1]) || 0)
} else {
process.stderr.write(help())
process.exit(1)
}
}
function help() {
return (
[
'',
' Usage: ' + pack.name + ' [options] <word> <word>',
'',
' ' + pack.description,
'',
' Options:',
'',
' -h, --help output usage information',
' -v, --version output version number',
'',
' Usage:',
'',
' # output edit distance',
' $ ' + pack.name + ' night nacht',
' # ' + diceCoefficient('night', 'nacht'),
'',
' # output edit distance from stdin',
' $ echo "saturday sunday" | ' + pack.name,
' # ' + diceCoefficient('saturday', 'sunday')
].join('\n') + '\n'
)
}