1.3.2 • Published 1 year ago

stubby.ts v1.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

npm.io

CodeQL Repo Dependents npm version NPM Download

stubby.ts

It's powerful and full laziness module for JavaScript and TypeScript.

Docs

let rand = RandomNumber(10, 100); console.log(rand); // now it will take random numbers between 10 to 100

</details>

<details>
<summary>RandomArray(object)</summary>
  
```ts
import { RandomArray } from "stubby.ts";


// first example.
let fruits = [
  "Apple",
  "Pineapple",
  "Orange",
  "Strawberry",
  "Mango",
  "Cherry"
];

let randomFruits = RandomArray(fruits);
console.log(randomFruits); // it will send the array value randmly 


// second example
let names = [
  {
    name: "Arif"
  },
  {
    name: "Afrin"
  }
];

let randomNames = RandomArray(names);
console.log(randomNames.name); // it will send the array json object value randomly

let num = "143"; let digits = num.length + 1;

console.log(SmallNumber(num, digits)) // it wil print superscript numbers like ⁰¹²³⁴⁵⁶⁷⁸⁹

</details>

<details>
<summary>SystemInfo()</summary>
	
```ts
import { SystemInfo } from "stubby.ts";

console.log(SystemInfo().memory());
console.log(SystemInfo().memoryUsage());
console.log(SystemInfo().cpuUsage());
console.log(SystemInfo().cores());
console.log(SystemInfo().cpuBrand());
console.log(SystemInfo().uptime());
import { Replace } from 'stubby.ts';

const paragraph = `
  %boyname% loves %girlname%, but %girlname% doesn't know yet.
`;

const replacements = {
  '%boyname%': 'Arif',
  '%girlname%': 'Afrin'
};

const loveStory = Replace(paragraph, replacements);

console.log(loveStory);

Thanks✨

Have a great day!😊