PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` // -------------------------------------------------------------------------------------------------------------------- // // fmt.js - Command line output formatting. // // Copyright (c) 2012 Andrew Chilton - http://chilts.org/ // Written by Andrew Chilton // // License: http://opensource.org/licenses/MIT // // -------------------------------------------------------------------------------------------------------------------- var util = require('util'); // -------------------------------------------------------------------------------------------------------------------- var sep = '==============================================================================='; var line = '-------------------------------------------------------------------------------'; var field = ' '; // -------------------------------------------------------------------------------------------------------------------- // separator module.exports.separator = function() { console.log(sep); }; // alias the above module.exports.sep = module.exports.separator; // line module.exports.line = function() { console.log(line); }; // title module.exports.title = function(title) { var out = '--- ' + title + ' '; out += line.substr(out.length); console.log(out); }; // field module.exports.field = function(key, value) { console.log('' + key + field.substr(key.length) + ' : ' + value); }; // subfield module.exports.subfield = function(key, value) { console.log('- ' + key + field.substr(key.length + 2) + ' : ' + value); }; // list item module.exports.li = function(msg) { console.log('* ' + msg); }; // dump module.exports.dump = function(data, name) { if ( name ) { console.log(name + ' :', util.inspect(data, false, null, true)); } else { console.log(util.inspect(data, false, null, true)); } }; // msg module.exports.msg = function(msg) { console.log(msg); }; // --------------------------------------------------------------------------------------------------------------------