@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) • 377 B
JavaScript
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";
export {
isFunction,
isObject,
isString,
isUndefined
};
//# sourceMappingURL=is.es.js.map