1.0.6 • Published 2 years ago
cemzify v1.0.6
cemzify
A simple npm package providing two features: random number generation and a hello world message.
Installation
You can install the package using npm:
npm install cemzify
Usage
Random Number Generation
const cemzify = require('cemzify');
const randomNumber = cemzify.random(0, 100); // (Minimum Number, Maximum Number)
console.log(randomNumber); // Example output: 42
Basic Hello Message
const cemzify = require('cemzify');
const helloMessage = cemzify.helloworld();
console.log(helloMessage); // Example output: Hello!