UNPKG

framework7

Version:

Full featured mobile HTML framework for building iOS & Android apps

14 lines 416 B
import { flattenArray } from '../../shared/utils.js'; const ignoreChildren = [false, null, '', undefined]; const $jsx = (type, props, ...children) => { const flatChildren = flattenArray((children || []).filter(child => ignoreChildren.indexOf(child) < 0)); if (type === 'Fragment') { return flatChildren; } return { type, props: props || {}, children: flatChildren }; }; export default $jsx;