UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

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