framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
18 lines (15 loc) • 512 B
JavaScript
import { flattenArray } from '../../shared/utils';
var ignoreChildren = [false, null, '', undefined];
var $jsx = function $jsx(type, props) {
for (var _len = arguments.length, children = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
children[_key - 2] = arguments[_key];
}
return {
type: type,
props: props || {},
children: flattenArray((children || []).filter(function (child) {
return ignoreChildren.indexOf(child) < 0;
}))
};
};
export default $jsx;