UNPKG

@kiroboio/fct-core

Version:

Kirobo.io FCT Core library

33 lines 1.47 kB
export class InstanceOf { static Variable = (object) => { return InstanceOf.CoreVariable(object) || InstanceOf.PluginVariable(object); }; static CoreVariable = (object) => { return typeof object === "object" && "type" in object && "id" in object; }; static PluginVariable = (object) => { return typeof object === "object" && "type" in object && object.type === "address[]"; }; static TupleArray = (value, param) => { return (param.customType || param.type.includes("tuple")) && param.type.lastIndexOf("[") > 0; }; static Tuple = (value, param) => { return (param.customType || param.type.includes("tuple")) && param.type.lastIndexOf("[") === -1; }; static CallWithPlugin = (object) => { return typeof object === "object" && "plugin" in object; }; static ValidationVariable = (object) => { return typeof object === "object" && "type" in object && object.type === "validation" && "id" in object; }; static Param = (data) => { return Array.isArray(data) && typeof data[0] === "object" && "type" in data[0] && "name" in data[0]; }; static ParamArray = (data) => { return Array.isArray(data) && InstanceOf.Param(data[0]); }; static ComputedVariable = (object) => { return typeof object === "object" && "type" in object && object.type === "computed" && "id" in object; }; } //# sourceMappingURL=instanceOf.js.map