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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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, 'reverse') // 0
51
+ myCounter.count(5, 'backwards') // 0
52
52
  ```
53
53
 
54
54
  Customizing the Starting Number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "countingup",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Math Utils for JavaScript",
5
5
  "main": "index.js",
6
6
  "directories": {