Skip to content

Commit

Permalink
Fixed linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzc0re committed Aug 5, 2023
1 parent a47009f commit 9876d6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@deliberative/crypto",
"description": "Libsodium, Merkle trees, Shamir secret sharing wasm module for nodejs and the browser.",
"version": "1.0.0",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/deliberative/crypto.git"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/isUint8Array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

const isUint8Array = (item: Uint8Array | unknown): item is Uint8Array => {
const isUint8Array = (item: unknown): item is Uint8Array => {
return (item as Uint8Array).byteOffset !== undefined;
};

Expand Down

0 comments on commit 9876d6e

Please sign in to comment.