ob1 0.82.4 → 0.82.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob1",
3
- "version": "0.82.4",
3
+ "version": "0.82.5",
4
4
  "description": "A small library for working with 0- and 1-based offsets in a type-checked way.",
5
5
  "main": "src/ob1.js",
6
6
  "exports": {
@@ -14,6 +14,7 @@
14
14
  import type {Number0, Number1} from '../ob1';
15
15
 
16
16
  const {add, add0, add1, get0, get1, inc, neg, sub, sub1} = require('../ob1');
17
+
17
18
  const FORTY_TWO_0 = add0(42);
18
19
  const FORTY_TWO_1 = add1(42);
19
20