Skip to content

Commit

Permalink
v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
UmamiAppearance committed Jan 15, 2023
1 parent 39a057c commit aa85a16
Show file tree
Hide file tree
Showing 79 changed files with 163 additions and 163 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,10 +339,10 @@ nmp install base-ex

## Builds
There are multiple builds available which are always grouped as [esm](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) and [iife](https://developer.mozilla.org/en-US/docs/Glossary/IIFE), plus a minified version of each. The full build with all converters included can be found at [dist](https://github.com/UmamiAppearance/BaseExJS/tree/main/dist), which contains:
* ``BaseEx.esm.js``
* ``BaseEx.esm.min.js``
* ``BaseEx.iife.js``
* ``BaseEx.iife.min.js``
* ``base-ex.esm.js``
* ``base-ex.esm.min.js``
* ``base-ex.iife.js``
* ``base-ex.iife.min.js``

Apart from the full build, every converter can be used standalone. The associated builds can be found at [dist/converters](https://github.com/UmamiAppearance/BaseExJS/tree/main/dist/converters). Or at the table [above](#available-converterscharsets). Ready to use CDN-links are listed [here](./CDN.md).

Expand All @@ -357,7 +357,7 @@ _Note that standalone converters are exported as default._

```html
<!-- the classic -->
<script src="path/BaseEx.iife.min.js"></script>
<script src="path/base-ex.iife.min.js"></script>
```

```js
Expand Down
30 changes: 15 additions & 15 deletions cjs/base-ex.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,7 @@ class BaseTemplate {
/**
* [BaseEx|Base1 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-1.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1609,7 +1609,7 @@ class Base1 extends BaseTemplate {
/**
* [BaseEx|Base16 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-16.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1697,7 +1697,7 @@ class Base16 extends BaseTemplate {
/**
* [BaseEx|Base32 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-32.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1802,7 +1802,7 @@ class Base32 extends BaseTemplate {
/**
* [BaseEx|Base58 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-58.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1952,7 +1952,7 @@ class Base58 extends BaseTemplate{
/**
* [BaseEx|Base64 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-64.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2040,7 +2040,7 @@ class Base64 extends BaseTemplate {
/**
* [BaseEx|UUencode Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/uuencode.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2244,7 +2244,7 @@ const ees = () => {
/**
* [BaseEx|Base85 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-85.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2367,7 +2367,7 @@ class Base85 extends BaseTemplate {
/**
* [BaseEx|Base91 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-91.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT AND BSD-3-Clause (Base91, Copyright (c) 2000-2006 Joachim Henke)
*/
Expand Down Expand Up @@ -2600,7 +2600,7 @@ class Base91 extends BaseTemplate {
/**
* [BaseEx|LEB128 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/leb-128.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2765,7 +2765,7 @@ class LEB128 extends BaseTemplate {
/**
* [BaseEx|Ecoji Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/ecoji.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT OR Apache-2.0
* @see https://github.com/keith-turner/ecoji
Expand Down Expand Up @@ -3107,7 +3107,7 @@ class Ecoji extends BaseTemplate {
/**
* [BaseEx|Base2048 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-2048.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3285,7 +3285,7 @@ class Base2048 extends BaseTemplate {
/**
* [BaseEx|SimpleBase Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/simple-base.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3385,7 +3385,7 @@ let DP=20,RM=1,MAX_DP=1e6,NE=-7,PE=21,STRICT=!1,NAME="[big.js] ",INVALID=NAME+"I
/**
* [BaseEx|BasePhi Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-phi.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3722,7 +3722,7 @@ class BasePhi extends BaseTemplate {
/**
* [BaseEx|Byte Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/byte-converter.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3840,7 +3840,7 @@ class ByteConverter {
/**
* [BaseEx]{@link https://github.com/UmamiAppearance/BaseExJS}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down
30 changes: 15 additions & 15 deletions dist/base-ex.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -1451,7 +1451,7 @@ class BaseTemplate {
/**
* [BaseEx|Base1 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-1.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1607,7 +1607,7 @@ class Base1 extends BaseTemplate {
/**
* [BaseEx|Base16 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-16.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1695,7 +1695,7 @@ class Base16 extends BaseTemplate {
/**
* [BaseEx|Base32 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-32.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1800,7 +1800,7 @@ class Base32 extends BaseTemplate {
/**
* [BaseEx|Base58 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-58.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -1950,7 +1950,7 @@ class Base58 extends BaseTemplate{
/**
* [BaseEx|Base64 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-64.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2038,7 +2038,7 @@ class Base64 extends BaseTemplate {
/**
* [BaseEx|UUencode Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/uuencode.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2242,7 +2242,7 @@ const ees = () => {
/**
* [BaseEx|Base85 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-85.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2365,7 +2365,7 @@ class Base85 extends BaseTemplate {
/**
* [BaseEx|Base91 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-91.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT AND BSD-3-Clause (Base91, Copyright (c) 2000-2006 Joachim Henke)
*/
Expand Down Expand Up @@ -2598,7 +2598,7 @@ class Base91 extends BaseTemplate {
/**
* [BaseEx|LEB128 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/leb-128.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -2763,7 +2763,7 @@ class LEB128 extends BaseTemplate {
/**
* [BaseEx|Ecoji Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/ecoji.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT OR Apache-2.0
* @see https://github.com/keith-turner/ecoji
Expand Down Expand Up @@ -3105,7 +3105,7 @@ class Ecoji extends BaseTemplate {
/**
* [BaseEx|Base2048 Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-2048.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3283,7 +3283,7 @@ class Base2048 extends BaseTemplate {
/**
* [BaseEx|SimpleBase Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/simple-base.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3383,7 +3383,7 @@ let DP=20,RM=1,MAX_DP=1e6,NE=-7,PE=21,STRICT=!1,NAME="[big.js] ",INVALID=NAME+"I
/**
* [BaseEx|BasePhi Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/base-phi.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3720,7 +3720,7 @@ class BasePhi extends BaseTemplate {
/**
* [BaseEx|Byte Converter]{@link https://github.com/UmamiAppearance/BaseExJS/blob/main/src/converters/byte-converter.js}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down Expand Up @@ -3838,7 +3838,7 @@ class ByteConverter {
/**
* [BaseEx]{@link https://github.com/UmamiAppearance/BaseExJS}
*
* @version 0.7.1
* @version 0.7.2
* @author UmamiAppearance [mail@umamiappearance.eu]
* @license MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/base-ex.esm.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit aa85a16

Please sign in to comment.