UNPKG
matting-editor
Version:
latest (0.2.4)
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
matting-editor
matting-editor
/
lib
/
utils
/
is-base64.js
9 lines
(8 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
isBase64 =
function
isBase64
(
str
) {
return
str && str.
indexOf
(
';base64'
) >
0
; };
exports
.
default
= isBase64;