0.2.5 • Published 1 year ago

countingup v0.2.5

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
1 year ago

Countingup

Countingup is a library that provides a Counter class to count up and down with customizations.

Installation

Using npm:

$ npm install countingup

In Node.js

const countingup = require('countingup')

Counter class

The Counter class provides a tool to count numbers.

Initializing

const Counter = countingup.Counter
const myCounter = new Counter()

Counting

myCounter.count()
console.log(myCounter.getCurrentNumber()) // 1

Resetting

myCounter.reset()
console.log(myCounter.getCurrentNumber()) // 0

Bonus Features

Customizing the Increment

myCounter.count()
console.log(myCounter.getCurrentNumber()) // 1
myCounter.count(3)
console.log(myCounter.getCurrentNumber()) // 4

Customizing the Direction

This allows you to change the direction so it counts down and subtracts

myCounter.reset()
myCounter.count(5)
console.log(myCounter.getCurrentNumber()) // 5
myCounter.count(5, countingup.Counter.DIRECTION.REVERSE) // 0

By default it will be forwards (countingup.Counter.DIRECTION.FORWARDS)

Customizing the Starting Number

const myCounter2 = new Counter(4)
console.log(myCounter2.getCurrentNumber()) // 4
myCounter2.reset(3)
console.log(myCounter2.getCurrentNumber()) // 3
0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago