File "index.js"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/generateblocks/src/utils/is-numeric/index.js
File size: 96 bytes
MIME-type: text/plain
Charset: utf-8

export default function isNumeric( n ) {
	return ! isNaN( parseFloat( n ) ) && isFinite( n );
}