@tinymce/beehive-flow
Version:
A CLI tool implementing the beehive flow git branching process
10 lines • 407 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isArray = exports.isObject = exports.isString = void 0;
const isString = (x) => typeof x === 'string';
exports.isString = isString;
const isObject = (x) => typeof x === 'object' && x !== null;
exports.isObject = isObject;
const isArray = (x) => Array.isArray(x);
exports.isArray = isArray;
//# sourceMappingURL=Type.js.map