diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-19 23:08:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-19 23:08:36 +0200 |
commit | 114ecb2e1c03255bed5efee77ba1d8a71c9944d5 (patch) | |
tree | 5dde674b39f3372ae0cbdaa6fce194aa2445b2dd /test/check.js | |
parent | db05ef2179b2c01c5af126bca697add39fc82a34 (diff) | |
download | kronika-114ecb2e1c03255bed5efee77ba1d8a71c9944d5.tar.gz kronika-114ecb2e1c03255bed5efee77ba1d8a71c9944d5.zip |
Sprawdzarka wpisów
* Add article checker * Fix config typo
Diffstat (limited to 'test/check.js')
-rw-r--r-- | test/check.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/check.js b/test/check.js new file mode 100644 index 0000000..5bae1f5 --- /dev/null +++ b/test/check.js @@ -0,0 +1,11 @@ +import readline from "readline"; +import { parsePost } from "kronikarz/dist/parsePost"; + +const rl = readline.createInterface({ + input: process.stdin, + output: process.stdout +}); + +rl.question("", filePath => { + parsePost(filePath); +}); |