Options
All
  • Public
  • Public/Protected
  • All
Menu

@iotechpis/utils

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"

Generated using TypeDoc