This package, added Extra methods, functions and classes for Node.js.
Turkish
Bu proje Node.js de varsayılan olarak yer almayan ancak diğer programlama dillerinde (python, rust etc.) bulunan metodlar, fonksiyonlar ve sınıfları dahil etmeyi amaçlamaktadır.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
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? ");