File "index.js"

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

Download   Open   Edit   Advanced Editor &nnbsp; Back

export default function getAttribute( name, props, getName = false ) {
	const {
		attributes,
		deviceType,
	} = props;

	const device = 'Desktop' === deviceType ? '' : deviceType;
	const attributeName = name + device;

	if ( getName ) {
		return attributeName;
	}

	return attributes[ attributeName ] ?? '';
}