extra-methods
v0.1.3
Published
Extra methods, functions and classes for Node.js.
Readme
Extra methods, functions and classes for Node.js.
This package, added Extra methods, functions and classes for Node.js.
title()
from python... Uppercase the first letter of words.
import { title } from 'extra-methods'; // const { title } = require("extra-methods");
title(" my name is ahmet "); // My Name İs Ahmetinput()
from python... Simple stdin read line function.
[!NOTE] @inquirer/input is so much better for this.
import { input } from 'extra-methods'; // const { input } = require("extra-methods");
await input("What's your name? ");