mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Fix eslint warnings
This commit is contained in:
parent
dd824179f1
commit
72ca818500
35 changed files with 510 additions and 290 deletions
|
|
@ -4,7 +4,8 @@
|
|||
|
||||
const BASE_64_CHR = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
||||
|
||||
/*jslint bitwise: true*/
|
||||
/* jslint bitwise: true */
|
||||
/* eslint-disable */
|
||||
const Base64 = {
|
||||
|
||||
// public method for urlsafe encoding
|
||||
|
|
@ -13,7 +14,7 @@ const Base64 = {
|
|||
|
||||
// public method for encoding
|
||||
encode: (input) => {
|
||||
|
||||
|
||||
let
|
||||
output = '',
|
||||
chr1, chr2, chr3, enc1, enc2, enc3, enc4,
|
||||
|
|
@ -164,4 +165,5 @@ const Base64 = {
|
|||
};
|
||||
|
||||
module.exports = Base64;
|
||||
/*jslint bitwise: false*/
|
||||
/* jslint bitwise: false */
|
||||
/* eslint-enable */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue