smart-variables
v1.0.2
Published
Helper functions for better data managment & cleaner code.
Downloads
7
Readme
Smart Variables
Helper functions for better data managment & cleaner code.
Installation
npm install smart-variables
API
createStorageVariable
Simply synchronizes any operations with localStorage or sessionStorage.
View usage here.
createElementVariable
When the variable is referenced, if the internal reference is undefined
, then a new call will be made via document.querySelector
. This way, the element is always ready when your code runs.
View usage here.