File "index.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/value-with-unit/index.js
File
size: 213 B (213 B bytes)
MIME-type: text/x-java
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
import isNumeric from '../is-numeric';
export default function valueWithUnit( value, unit ) {
if ( ! value && 0 !== value ) {
return false;
}
return isNumeric( value ) && unit
? value + unit
: value;
}