diff options
author | Anton Luka Šijanec <sijanecantonluka@gmail.com> | 2020-02-09 00:38:26 +0100 |
---|---|---|
committer | Anton Luka Šijanec <sijanecantonluka@gmail.com> | 2020-02-09 00:38:26 +0100 |
commit | 70aa7a5cb9de83c0966985618d6e6d4d4400dd0d (patch) | |
tree | 034c862909cbd070e03612395b9a6d85a1c2c9eb /node_modules/xss/lib/cli.js | |
parent | added http://beziapp/?m=Name Surname to redirect to the messaging page with prefilled recipient (diff) | |
download | beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.tar beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.tar.gz beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.tar.bz2 beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.tar.lz beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.tar.xz beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.tar.zst beziapp-70aa7a5cb9de83c0966985618d6e6d4d4400dd0d.zip |
Diffstat (limited to 'node_modules/xss/lib/cli.js')
-rw-r--r-- | node_modules/xss/lib/cli.js | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/node_modules/xss/lib/cli.js b/node_modules/xss/lib/cli.js deleted file mode 100644 index 4aa075e..0000000 --- a/node_modules/xss/lib/cli.js +++ /dev/null @@ -1,45 +0,0 @@ -/** - * command line tool - * - * @author Zongmin Lei<leizongmin@gmail.com> - */ - -var xss = require("./"); -var readline = require("readline"); - -var rl = readline.createInterface({ - input: process.stdin, - output: process.stdout -}); - -console.log('Enter a blank line to do xss(), enter "@quit" to exit.\n'); - -function take(c, n) { - var ret = ""; - for (var i = 0; i < n; i++) { - ret += c; - } - return ret; -} - -function setPrompt(line) { - line = line.toString(); - rl.setPrompt("[" + line + "]" + take(" ", 5 - line.length)); - rl.prompt(); -} - -setPrompt(1); - -var html = []; -rl.on("line", function(line) { - if (line === "@quit") return process.exit(); - if (line === "") { - console.log(""); - console.log(xss(html.join("\r\n"))); - console.log(""); - html = []; - } else { - html.push(line); - } - setPrompt(html.length + 1); -}); |