ob1 0.60.0 → 0.64.0

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/package.json +1 -1
  2. package/src/ob1.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob1",
3
- "version": "0.60.0",
3
+ "version": "0.64.0",
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
  "repository": {
package/src/ob1.js CHANGED
@@ -10,9 +10,9 @@
10
10
  "use strict";
11
11
  /* eslint-disable no-redeclare */
12
12
  // A type representing 0-based offsets.
13
-
14
13
  // A type representing 1-based offsets.
15
14
  // Add two offsets or numbers.
15
+
16
16
  function add(a, b) {
17
17
  return a + b;
18
18
  } // Subtract a number or 0-based offset from a 1/0-based offset.