stefannpm
v2.5.0
Published
StefanNPM is my first published NPM package.
Downloads
12
Maintainers
Readme
StefanNPM Readme
My first published NPM package.
Includes simple console logs and two functions squareIt and cubeIt for testing.
npm i stefannpm --saveCreate a
test.jsfilePaste the following:
const stefanNPM = require("stefannpm"); console.log(stefanNPM.squareIt(3)); console.log(stefanNPM.cubeIt(3));node test
