You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
411 B
13 lines
411 B
import assertString from './util/assertString';
|
|
var notBase64 = /[^A-Z0-9+\/=]/i;
|
|
export default function isBase64(str) {
|
|
assertString(str);
|
|
var len = str.length;
|
|
|
|
if (!len || len % 4 !== 0 || notBase64.test(str)) {
|
|
return false;
|
|
}
|
|
|
|
var firstPaddingChar = str.indexOf('=');
|
|
return firstPaddingChar === -1 || firstPaddingChar === len - 1 || firstPaddingChar === len - 2 && str[len - 1] === '=';
|
|
} |