UNPKG
@belvo-finance/belvo-vue-components
Version:
latest (1.12.19)
1.12.19
## Project setup ``` npm install ```
@belvo-finance/belvo-vue-components
/
node_modules
/
lottie-web
/
player
/
js
/
utils
/
featureSupport.js
9 lines
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
featureSupport = (
function
(
){
var
ob = {
maskType
:
true
};
if
(
/MSIE 10/i
.
test
(navigator.
userAgent
) ||
/MSIE 9/i
.
test
(navigator.
userAgent
) ||
/rv:11.0/i
.
test
(navigator.
userAgent
) ||
/Edge\/\d./i
.
test
(navigator.
userAgent
)) { ob.
maskType
=
false
; }
return
ob; }());