File "generateCSSUnit.js"
Full path: C:/Inetpub/vhosts/drshti.com/httpdocs/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateCSSUnit.js
File
size: 222 B (222 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
function generateCSSUnit( value, unit = '', isImportant = false ) {
if ( isNaN( value ) || value === '' ) {
return '';
}
return value + unit + ( isImportant ? ' !important' : '' );
}
export default generateCSSUnit;