1.1.1 • Published 3 months ago

gain-quote v1.1.1

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

Quote Utils

This module provides utilities for fetching random quotes and manipulating strings.

Installation

You can install this module via npm: npm install quote-utils

Usage

Fetching Random Quote

const { fetchRandomQuote } = require('quote-utils');

fetchRandomQuote().then((quote) => {
  console.log('Random Quote:', quote);
}).catch((error) => {
  console.error('Error:', error.message);
});