mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
18 lines
285 B
JavaScript
18 lines
285 B
JavaScript
/* exported Utils */
|
|
/* Magic Mirror
|
|
* Utils
|
|
*
|
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
|
* MIT Licensed.
|
|
*/
|
|
|
|
var colors = require("colors/safe");
|
|
|
|
var Utils = {
|
|
colors: {
|
|
warn: colors.yellow
|
|
}
|
|
};
|
|
|
|
if (typeof module !== "undefined") {module.exports = Utils;}
|