Comparing version 0.0.0 to 0.0.1
@@ -5,2 +5,14 @@ # Changelog | ||
### [0.0.1](https://github.com/Anadian/cno-base64/compare/v0.0.0...v0.0.1) (2024-03-31) | ||
### Continuous Integration | ||
* Improved coverage. ([bf5ac6d](https://github.com/Anadian/cno-base64/commit/bf5ac6dd49301ae9ebb226ad13aee6ba3d03f0ac)) | ||
### Documentation | ||
* Updated README. ([6c43618](https://github.com/Anadian/cno-base64/commit/6c43618b7604efc1724dd40747f3f92915b7fa26)) | ||
## 0.0.0 (2024-03-31) | ||
@@ -7,0 +19,0 @@ |
{ | ||
"name": "cno-base64", | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"description": "Micropackage: convert between a NodeJS Buffer and a base64-encoded string with optional URL-safe alphabet, padding, and MultiBase prefix.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -5,4 +5,7 @@ # cno-base64 | ||
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?style=flat-square)](https://conventionalcommits.org) | ||
[![License](https://img.shields.io/github/license//cno-base64)](https://github.com//cno-base64/blob/main/LICENSE) | ||
[![License](https://img.shields.io/github/license/Anadian/cno-base64)](https://github.com/Anadian/cno-base64/blob/main/LICENSE) | ||
[![NPM Version](https://img.shields.io/npm/v/cno-base64?style=plastic)](https://www.npmjs.com/package/cno-base64) | ||
[![Coverage Status](https://coveralls.io/repos/github/Anadian/cno-base64/badge.svg?branch=main)](https://coveralls.io/github/Anadian/cno-base64?branch=main) | ||
> Micropackage: convert between a NodeJS Buffer and a base64-encoded string with optional URL-safe alphabet, padding, and MultiBase prefix. | ||
@@ -9,0 +12,0 @@ # Table of Contents |
@@ -216,6 +216,6 @@ #!/usr/bin/env node | ||
_return = Buffer.from( base64_string, 'base64' ); | ||
} catch(error){ | ||
} catch(error) /* c8 ignore start */ { | ||
return_error = new Error(`Buffer.from threw an error: ${error}`); | ||
throw return_error; | ||
} | ||
} /* c8 ignore stop */ | ||
} // noop | ||
@@ -222,0 +222,0 @@ //Return |
25426
30