1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

* first action!

This commit is contained in:
shimataro 2019-09-18 20:30:33 +09:00
parent 8deacc95b1
commit 4e3aad3b7f
No known key found for this signature in database
GPG key ID: BE92C05736911A9D
3750 changed files with 1155519 additions and 0 deletions

37
node_modules/btoa-lite/README.md generated vendored Normal file
View file

@ -0,0 +1,37 @@
# btoa-lite
![](http://img.shields.io/badge/stability-stable-orange.svg?style=flat)
![](http://img.shields.io/npm/v/btoa-lite.svg?style=flat)
![](http://img.shields.io/npm/dm/btoa-lite.svg?style=flat)
![](http://img.shields.io/npm/l/btoa-lite.svg?style=flat)
Smallest/simplest possible means of using btoa with both Node and browserify.
In the browser, encoding base64 strings is done using:
``` javascript
var encoded = btoa(decoded)
```
However in Node, it's done like so:
``` javascript
var encoded = new Buffer(decoded).toString('base64')
```
You can easily check if `Buffer` exists and switch between the approaches
accordingly, but using `Buffer` anywhere in your browser source will pull
in browserify's `Buffer` shim which is pretty hefty. This package uses
the `main` and `browser` fields in its `package.json` to perform this
check at build time and avoid pulling `Buffer` in unnecessarily.
## Usage
[![NPM](https://nodei.co/npm/btoa-lite.png)](https://nodei.co/npm/btoa-lite/)
### `encoded = btoa(decoded)`
Returns the base64-encoded value of a string.
## License
MIT. See [LICENSE.md](http://github.com/hughsk/btoa-lite/blob/master/LICENSE.md) for details.