MagicMirror/js/utils.js

20 lines
308 B
JavaScript
Raw Normal View History

2017-02-28 01:41:21 -03:00
/* Magic Mirror
* Utils
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
var colors = require("colors/safe");
var Utils = {
colors: {
warn: colors.yellow,
error: colors.red,
info: colors.blue
2017-02-28 01:41:21 -03:00
}
};
if (typeof module !== "undefined") {
module.exports = Utils;
}