mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
20 lines
308 B
JavaScript
20 lines
308 B
JavaScript
/* 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
|
|
}
|
|
};
|
|
|
|
if (typeof module !== "undefined") {
|
|
module.exports = Utils;
|
|
}
|