File "index.js"

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

Download   Open   Edit   Advanced Editor &nnbsp; Back

export default function addToCSS( css, selector, properties ) {
	if ( typeof css[ selector ] === 'undefined' ) {
		css[ selector ] = [];
	}

	css[ selector ].push( properties );

	return css;
}