Initial release!

This commit is contained in:
Wessel Tip
2019-04-22 22:15:37 +02:00
parent df1358f86e
commit 91de4c8c20
30 changed files with 1654 additions and 0 deletions

7
__test__/global.js Normal file
View File

@@ -0,0 +1,7 @@
const { loggers, colors } = require('../');
const log = loggers.get('main');
module.exports = () => {
log.info(`Method "${colors.green('info')}" is global`);
console.pikmin.error('Oh no!');
};