@redhare/lowcode-datasource-types
Version:
12 lines • 427 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isJSFunction = exports.isJSExpression = void 0;
function isJSExpression(data) {
return data && data.type === 'JSExpression';
}
exports.isJSExpression = isJSExpression;
function isJSFunction(x) {
return typeof x === 'object' && x && x.type === 'JSFunction';
}
exports.isJSFunction = isJSFunction;
//# sourceMappingURL=value-type.js.map
;