almogsinc
v1.0.1
Published
a simple function to get a number ane increase it by 1
Downloads
2
Readme
almogsinc
A simple library that increments a counter by one
Installation
npm install almogsinc
## How to use:
const { increment } = require('./index');
console.log(increment()); // Output: 1
console.log(increment()); // Output: 2
console.log(increment()); // Output: 3