2018-09-26 11:24:02 -07:00

6 lines
170 B
JavaScript

module.exports = function cliNegate() {
return {
name: 'cliNegate',
process: function(str) { return 'no' + str.charAt(0).toUpperCase() + str.slice(1); }
};
};