Travis build: 594

This commit is contained in:
30secondsofcode
2018-10-04 13:46:53 +00:00
parent 998a1ae477
commit db202497a7
2 changed files with 2 additions and 2 deletions

View File

@ -6179,7 +6179,7 @@ Creates a base-64 encoded ASCII string from a String object in which each charac
Create a `Buffer` for the given string with binary encoding and use `Buffer.toString('base64')` to return the encoded string.
```js
const btoa = str => new Buffer.from(str, 'binary').toString('base64');
const btoa = str => Buffer.from(str, 'binary').toString('base64');
```
<details>

File diff suppressed because one or more lines are too long