This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
forked from mateuspiresl/syllable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
executable file
·83 lines (73 loc) · 1.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env node
import fs from 'fs'
import {URL} from 'url'
import {syllable} from './index.js'
/** @type {Object.<string, unknown>} */
var pack = JSON.parse(
String(fs.readFileSync(new URL('./package.json', import.meta.url)))
)
var argv = process.argv.slice(2)
var command = pack.name
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', getSyllables)
} else {
getSyllables(argv.join(' '))
}
/**
* @param {string} value
*/
function getSyllables(value) {
var values = value
.split(/\s+/g)
.map((/** @type {string} */ d) => d.trim())
.filter(Boolean)
if (values.length === 0) {
process.stderr.write(help())
process.exit(1)
} else {
console.log(syllables(values))
}
}
/**
* @param {Array.<string>} values
*/
function syllables(values) {
var sum = 0
var index = -1
while (++index < values.length) {
sum += syllable(values[index])
}
return sum
}
function help() {
return (
[
'',
'Usage: ' + command + ' [options] <words...>',
'',
pack.description,
'',
'Options:',
'',
' -h, --help output usage information',
' -v, --version output version number',
'',
'Usage:',
'',
'# output syllables',
'$ ' + command + ' syllable unicorn',
'# ' + syllables(['syllable', 'unicorn']),
'',
'# output syllables from stdin',
'$ echo "syllable unicorn banana" | ' + command,
'# ' + syllables(['syllable', 'unicorn', 'banana']),
''
].join('\n ') + '\n'
)
}