Package Exports
- @anahijo/add-four-numbers
- @anahijo/add-four-numbers/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@anahijo/add-four-numbers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Add four numbers
This module helps you to add four numbers.
Install
npm install add-four-numbersUSAGE
addFourNumbers(a, b, c, d)
// Load library
const addFourNumbers = require('add-four-numbers');
// Calculate 0 + 1 + 2 + 3
console.log(addFourNumbers(0, 1, 2, 3)); // => 6Test
npm testLicense ISC