delphine-basic-calculator
v2.0.0
Published
This is a Node.js module available through the npm registry.
Downloads
11
Readme
Delphine basic calculator
installation
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js. Node.js 0.10 or higher is required.
If this is a brand new project, make sure to create a package.json first with the npm init command.
Installation is done using the npm install command:
npm i delphine-basic-calculator
Follow our installing guide for more information.
Features
Usage
const calculator = require('delphine-basic-calculator');
const sum = calculator.add(2, 4);
console.log(sum);