From ed9d8ce92f2c650373f5b85cc6f31d51170e1816 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 22 Nov 2016 20:08:40 -0300 Subject: [PATCH] standard fixes --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 5cbf37f..439f860 100644 --- a/index.js +++ b/index.js @@ -1557,7 +1557,7 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) { // HELPER FUNCTIONS // ================ -var INVALID_BASE64_RE = /[^+\/0-9A-Za-z-_]/g +var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g function base64clean (str) { // Node strips out invalid characters like \n and \t from the string, base64-js does not -- 2.34.1