countingup 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ This allows you to change the direction so it counts down and subtracts
|
|
|
48
48
|
myCounter.reset()
|
|
49
49
|
myCounter.count(5)
|
|
50
50
|
console.log(myCounter.getCurrentNumber()) // 5
|
|
51
|
-
myCounter.count(5, '
|
|
51
|
+
myCounter.count(5, 'backwards') // 0
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
Customizing the Starting Number
|