1.0.2 • Published 4 years ago
jyglobal v1.0.2
About
jyglobal is a personal npm module for speeding up development, testing and debugging stages.
Installation
In terminal (navigate to your project folder first):
npm i jyglobalthen in your .js file, include this code to start using:
require('jyglobal');
log('hello, shorthand for console.log')
cc('hi, shorthand for console.log')Functions (global scope)
log(message)- about: shorthand for
console.log(message), acts exactly likeconsole.log(message) - params:
messageoptionalmessage: can be integer, variable, array, object.log(): ifmessageis ommited, a blank line will be returned.
- advanced: supports multiple params:
log(msg1, msg2, ...)=console.log(msg1, msg2, ...)
- about: shorthand for
cc(message)- about:
- light weight, shorter version of
console.log(message). - stands for closed captioning in subtitle (acts like subtitle in movie 😊).
cc('example)is the same asconsole.log(example).
- light weight, shorter version of
- param:
messageoptionalcc(): function as a separator- if
messageis empty -> console.log(----------) in terminal
- extra: only accept 1 param, use
log(message)for multiple params.
- about:
Notes
More globals will be added in the future for easier testing and debugging.