UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

12 lines (10 loc) 280 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isPrefixedValue; var regex = /-webkit-|-moz-|-ms-/; function isPrefixedValue(value) { return typeof value === 'string' && regex.test(value); } module.exports = exports['default'];