Comparing version 0.66.2 to 0.67.0
{ | ||
"name": "ob1", | ||
"version": "0.66.2", | ||
"version": "0.67.0", | ||
"description": "A small library for working with 0- and 1-based offsets in a type-checked way.", | ||
@@ -5,0 +5,0 @@ "main": "src/ob1.js", |
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
@@ -13,3 +13,3 @@ * This source code is licensed under the MIT license found in the | ||
const { add, get0, get1, add1, sub1, sub, neg, add0, inc } = require("../ob1"); | ||
const { add, add0, add1, get0, get1, inc, neg, sub, sub1 } = require("../ob1"); | ||
@@ -60,3 +60,3 @@ const FORTY_TWO_0 = add0(42); | ||
get1(42); | ||
} | ||
}, | ||
}; |
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
@@ -61,3 +61,3 @@ * This source code is licensed under the MIT license found in the | ||
add0, | ||
inc | ||
inc, | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8478