Initial take on the commands + renderers + cli.

This commit is contained in:
André Cruz
2013-05-23 19:55:59 +01:00
parent 9f6bf62efc
commit cfb3d14028
21 changed files with 442 additions and 68 deletions

7
lib/renderers/mute.js Normal file
View File

@@ -0,0 +1,7 @@
function empty() {
return '';
}
module.exports.data = empty;
module.exports.error = empty;
module.exports.end = empty;