@phaserjs/phaser
Version:
10 lines (9 loc) • 398 B
JavaScript
import { CONFIG_DEFAULTS } from "../const";
import { ConfigStore } from "../ConfigStore";
export function AddBanner() {
const { title, version, url, color, background } = ConfigStore.get(CONFIG_DEFAULTS.BANNER);
if (title !== "") {
const str = `${title} ${version}`.trimEnd();
console.log(`%c${str}%c ${url}`, `padding: 4px 16px; color: ${color}; background: ${background}`, "");
}
}