UNPKG
owofi-cli
Version:
latest (1.0.1)
1.0.1
1.0.0
CLI to owoify text.
github.com/Luvella/owofi
Luvella/owofi
owofi-cli
/
src
/
index.js
7 lines
(5 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
#! /usr/bin/env node
const
owoify =
require
(
'owofi'
);
const
text = process.
argv
.
slice
(
2
).
join
(
' '
);
if
(!text)
return
console
.
log
(
'No text to owoify!'
);
console
.
log
(
owoify
(text));