1.0.3 • Published 8 months ago
rayyan-package v1.0.3
run npm install rayyan-package.
In your main file,
const {helloNpm} = require('rayyan-package);
const result = helloNpm();
console.log(result);
you should see "hello NPM".
const {generateString} = require('rayyan-package);
const randomStringOfLength_7 = generateString(7);
console.log(randomStringOfLength_7);