]> zoso.dev Git - buffer.git/commit
Fix base 64 character exclusion regex
authordaverayment <dave.rayment@gmail.com>
Tue, 4 Aug 2015 09:53:47 +0000 (10:53 +0100)
committerdaverayment <dave.rayment@gmail.com>
Tue, 4 Aug 2015 09:53:47 +0000 (10:53 +0100)
commit78d1d5b6ab278814d876986473de99a63ff66ed0
treea0d27796b4cd606ea6be82d2f2202cbd22e69ee8
parent6cb7b19c8caf26e9d420e97f7adb634c470b75df
Fix base 64 character exclusion regex

Using [A-z] in the regex brings in non-alphanumeric characters between the uppercase and lowercase alphabets, meaning the following chars were not correctly stripped from base 64 strings: left and right square bracket, backslash, caret, underline, and backtick. Explicitly separating the uppercase and lowercase letter ranges fixes this.
index.js