-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
30d8286
commit 76afc6c
Showing
3 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# Example | ||
# Examples | ||
|
||
> More examples in [the test files](https://github.com/codec-bytes/base32/tree/main/test/src). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
# Installation | ||
|
||
Can be managed using | ||
[jspm](http://jspm.io) | ||
or [npm](https://github.com/npm/npm). | ||
[yarn](https://yarnpkg.com/en/docs), | ||
[npm](https://docs.npmjs.com), | ||
or [jspm](https://jspm.org/docs). | ||
|
||
### jspm | ||
|
||
### yarn | ||
```terminal | ||
jspm install npm:@codec-bytes/base32 | ||
yarn add @codec-bytes/base32 | ||
``` | ||
|
||
### npm | ||
```terminal | ||
npm install @codec-bytes/base32 --save | ||
``` | ||
|
||
### jspm | ||
```terminal | ||
jspm install npm:@codec-bytes/base32 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
# Usage | ||
|
||
The code needs a ES2015+ polyfill to work, for example | ||
[regenerator-runtime/runtime](https://babeljs.io/docs/usage/polyfill). | ||
> :warning: Depending on your environment, the code may require | ||
> `regeneratorRuntime` to be defined, for instance by importing | ||
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime). | ||
First, require the polyfill at the entry point of your application | ||
```js | ||
await import( 'regenerator-runtime/runtime.js' ) ; | ||
await import('regenerator-runtime/runtime.js'); | ||
// or | ||
import 'regenerator-runtime/runtime.js' ; | ||
import 'regenerator-runtime/runtime.js'; | ||
``` | ||
|
||
Then | ||
Then, import the library where needed | ||
```js | ||
const codecbase32 = await import( '@codec-bytes/base32' ) ; | ||
const {encode, decode} = await import('@codec-bytes/base32'); | ||
// or | ||
import * as codecbase32 from '@codec-bytes/base32' ; | ||
import {encode, decode} from '@codec-bytes/base32'; | ||
``` |