Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425
  1. "use strict";
  2. var inspect = require("util").inspect;
  3. function log(data)
  4. {
  5. console.log( inspect(data, {depth:null, colors:true}) );
  6. }
  7. function logAll(data)
  8. {
  9. console.log( inspect(data, {depth:null, showHidden:true, colors:true}) );
  10. }
  11. module.exports =
  12. {
  13. log: log,
  14. logAll: logAll
  15. };