| 1234567891011121314151617 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ifShow = void 0;
- function ifShow(show, container, creator, removeChildren, removeHandler) {
- if (removeChildren === void 0) { removeChildren = true; }
- if (removeHandler === void 0) { removeHandler = function (g) {
- g.node().removeChildren();
- }; }
- if (show) {
- return creator(container);
- }
- if (removeChildren)
- removeHandler(container);
- return null;
- }
- exports.ifShow = ifShow;
- //# sourceMappingURL=if-show.js.map
|