aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/utils/utils.ts
blob: 04ac36b549c3fb212e662ede1eb165d7ff49521e (plain) (blame)
1
2
3
4
5
6
7
export const utils = {
    consoleLog(message: string): void {
        /* tslint:disable */
        console.log(message);
        /* tslint:enable */
    },
};