UNPKG

readeasy

Version:

Easily test the readability of a text and suggest areas of improvement.

12 lines (8 loc) 203 B
#!/usr/bin/env node const args = process.argv.splice(process.execArgv.length + 2); const text = args[0]; const readeasy = require('../index.js') readeasy(text) .then( res => { console.log(res) })