gtinoco-project-1c-custom-console-log
v1.0.0
Published
Custom console log
Readme
Custom Console Log
This library show different kind of custom messages on browser These are the available functions "ok", "info", "error" and "warning".
Installation
npm i gtinoco-project-1c-custom-console-logUseo
To use the module we must to import it.
const m = require('gtinoco-project-1c-custom-console-log');Confirmation message "ok"
m.ok('The data has been sent properly');Information message "info"
m.info('The data has been sent properly');Warning message "warning"
m.warn('The data has been sent properly even though not so fast');Failure message "error"
m.error('The data has not been sent properly!');