UNPKG

wot-design

Version:

Mobile UI components built on vue.js

15 lines (11 loc) 267 B
"use strict"; exports.__esModule = true; exports.isNumeric = isNumeric; exports.isDef = void 0; var isDef = function isDef(val) { return val !== undefined && val !== null; }; exports.isDef = isDef; function isNumeric(val) { return /^\d+(\.\d+)?$/.test(val); }