You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cli.js 202B

12345678910111213
  1. #!/usr/bin/env node
  2. var prefix = require("./index.js");
  3. var str = "";
  4. process.stdin.on("data", function(data) {
  5. str += data;
  6. });
  7. process.stdin.on("end", function() {
  8. console.log(prefix(str));
  9. });