@chatui/core
Version:
The React library for Chatbot UI
11 lines (10 loc) • 363 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
// IE 不支持 toggle 第二个参数
var _default = exports.default = function _default(className, flag) {
var el = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : document.body;
el.classList[flag ? 'add' : 'remove'](className);
};