File "index.js"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/is-numeric/index.js
File size: 96 B (96 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

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