node-sp-publish
Version:
Publish your Stored Procedures conveniently to different MSSQL Servers
21 lines (19 loc) • 415 B
JavaScript
;
var color = require('colors');
module.exports = {
info: function info(text) {
console.log(color.yellow(text));
},
debug: function debug(text) {
console.log(color.blue(text));
},
error: function error(text) {
console.log(color.red(text));
},
explain: function explain(text) {
console.log(color.green(text));
},
log: function log(text) {
console.log(text);
}
};