UNPKG
@lyra/form-builder
Version:
latest (0.3.0)
0.3.0
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
Lyra form builder
vegapublish.com
VegaPublish/vega
@lyra/form-builder
/
lib
/
inputs
/
BlockEditor
/
utils
/
isMac.js
8 lines
(6 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
const
IS_MAC
=
typeof
window
!=
'undefined'
&&
/Mac|iPod|iPhone|iPad/
.
test
(
window
.
navigator
.
platform
);
exports
.
default
=
IS_MAC
;