1.0.0 • Published 3 months ago

string-filatovmark v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

string-filatovmark

This module provides a collection of awesome functions for Node.js.

Installation

You can install this module via npm: npm install string-filatovmark

Usage

const { getRandomQuote, calculateAge, getRandomInt } = require('awesome-module');

(async () => {
    try {
        const quote = await getRandomQuote();
        console.log('Random Quote:', quote);

        const age = calculateAge('1990-01-01');
        console.log('Age:', age);

        const randomInt = getRandomInt(1, 100);
        console.log('Random Integer:', randomInt);
    } catch (error) {
        console.error('Error:', error.message);
    }
})();