1.1.1 • Published 3 years ago

npm-package-intro v1.1.1

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Intro to Creating Node Packages

Quick Start

  • npm install npm-package-intro

API

  • sum: adds arbitrary quantity of numbers together
const arithmetic = require('npm-package-intro');

arithmetic.sum(1,2,3,4); // adds up all arguments
  • multiply: multiplies arbitrary quantity of numbers together
const arithmetic = require('npm-package-intro');

arithmetic.multiply(1,2,3,4); // adds up all arguments