UNPKG

emotify

Version:

This simple app will take one string argument and return it with a smiley :) attached at the end

9 lines (5 loc) 117 B
var string = process.argv[2] function emotify(string){ return string + " :)"; } console.log(emotify(string));