0.1.3 • Published 6 months ago
extra-methods v0.1.3
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 Ahmet
input()
from python... Simple stdin read line function.
!NOTE(https://npmjs.com/package/@inquirer/input) is so much better for this.
import { input } from 'extra-methods'; // const { input } = require("extra-methods");
await input("What's your name? ");