File "index.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/has-numeric-value/index.js
File
size: 221 B (221 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
/**
* Check if we have a numeric value.
*
* @param {string} value The value to check.
* @return {boolean} Whether a value exists.
*/
export default function hasNumericValue( value ) {
return value || 0 === value;
}