UNPKG

@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.

19 lines (18 loc) 485 B
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"; const isBoolean = (val) => typeof val === "boolean"; const isArray = Array.isArray; export { isArray, isBoolean, isFunction, isObject, isString, isUndefined }; //# sourceMappingURL=is.es.js.map