@iotechpis/utils
v1.7.8
Published
https://docs.iotech.pt/npm/@iotechpis/utils/index.html
Downloads
9
Readme
npm-iotechpis_utils
Documentation
https://docs.iotech.pt/npm/@iotechpis/utils/index.html
Install
npm i @iotechpis/utils -s
How to use namespace Object globally
Just use this outside of anything in your code
require("@iotechpis/utils")._Object;
Now all the functions from the "Namespace Object" are available in JS Object
Example:
require("@iotechpis/utils")._Object;
let a = {k: 1};
let b = {k: 2};
Object.isEqual(a,b); //returns false
How to use namespace String globally
Just use this outside of anything in your code
require("@iotechpis/utils")._String;
Now all the functions from the "Namespace String" are available in JS String
Example:
require("@iotechpis/utils")._String;
let a = "Piqué";
a.latinize(); //returns "Pique"