- Build: Update

- npm: Add `prepare` script to update license-badges, copy, and prep (leaving prepublishOnly to handle build-docs)
- npm: Make license badge prep. in series as getting too many files open error running in parallel
- npm: Update devDeps
This commit is contained in:
Brett Zamir
2020-04-01 15:32:51 +08:00
parent ea58adbab1
commit e4f36a3c5b
17 changed files with 323 additions and 295 deletions

View File

@@ -8145,10 +8145,10 @@
var enc4 = chr3 & 63;
/* eslint-enable no-bitwise */
if (isNaN(chr2)) {
if (Number.isNaN(chr2)) {
enc3 = 64;
enc4 = 64;
} else if (isNaN(chr3)) {
} else if (Number.isNaN(chr3)) {
enc4 = 64;
}