lumios-toolkit
v0.0.6
Published
A collection of tools and useful functions
Downloads
5
Maintainers
Readme
Lumios Toolkit
A collection of useful JavaScript tools & functions for use in Lumios' products
Usage
Importing the module
var toolkit = require('lumios-toolkit');
Logging
Log your console output to file effortlessly:
toolkit.log(level, message);
Levels: success
, info
, debug
, warn
, error
Additionally, you can also call the function by their warning levels:
toolkit.success('%s');
toolkit.info('%s');
toolkit.debug('%s');
toolkit.warn('%s');
toolkit.error('%s');