You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
465 B
11 lines
465 B
import { flex } from './flex';
|
|
import { grid } from './grid';
|
|
export default (function (container, children, config) {
|
|
if (children.length === 0)
|
|
return [];
|
|
var callers = { flex: flex, grid: grid };
|
|
var caller = config.display in callers ? callers[config.display] : null;
|
|
// @ts-ignore
|
|
return (caller === null || caller === void 0 ? void 0 : caller.call(null, container, children, config)) || [];
|
|
});
|
|
//# sourceMappingURL=executer.js.map
|