@opentiny/fluent-editor
Version:
A rich text editor based on Quill 2.0, which extends rich modules and formats on the basis of Quill. It's powerful and out-of-the-box.
15 lines (14 loc) • 527 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function isObject(value) {
const type = typeof value;
return value != null && (type === "object" || type === "function");
}
const isUndefined = (val) => val === void 0;
const isFunction = (val) => typeof val === "function";
const isString = (val) => typeof val === "string";
exports.isFunction = isFunction;
exports.isObject = isObject;
exports.isString = isString;
exports.isUndefined = isUndefined;
//# sourceMappingURL=is.cjs.js.map