whoami7 - Manager
:
/
home
/
rattkxnv
/
byattorney.com
/
wp-content
/
plugins
/
generateblocks
/
src
/
utils
/
build-css
/
Upload File:
files >> /home/rattkxnv/byattorney.com/wp-content/plugins/generateblocks/src/utils/build-css/index.js
export default function buildCSS( cssObj ) { let css = ''; for ( const [ key, value ] of Object.entries( cssObj ) ) { if ( value.length < 1 ) { continue; } let tempOutput = key + '{'; let elementsAdded = 0; for ( const [ index, properties ] of Object.entries( value ) ) { // eslint-disable-line no-unused-vars for ( const [ attribute, val ] of Object.entries( properties ) ) { if ( ! val && 0 !== val ) { continue; } elementsAdded++; tempOutput += attribute + ': ' + val + ';'; } } tempOutput += '}'; if ( elementsAdded > 0 ) { css += tempOutput; } } return css; }
Copyright ©2021 || Defacer Indonesia