UNPKG

framer-motion

Version:

A simple and powerful React animation library

7 lines (5 loc) 212 B
/** * Check if value is a numerical string, ie a string that is purely a number eg "100" or "-100.1" */ var isNumericalString = function (v) { return /^\-?\d*\.?\d+$/.test(v); }; export { isNumericalString };