Files
MagicMirror/js/utils.js
T

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
}
};
2020-05-11 22:22:32 +02:00
if (typeof module !== "undefined") {
module.exports = Utils;
}