@backland/schema
Version:
TypeScript schema declaration and validation library with static type inference
35 lines (34 loc) • 1.58 kB
JavaScript
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
/**
* Used to represent an object as another object field
*/
import { CircularDeps } from '../CircularDeps';
import { FieldType, isFieldInstance } from './FieldType';
export class ObjectField extends FieldType {
static is(t) {
return isFieldInstance(t) && t.typeName === 'object';
}
constructor(def) {
super({
def: def,
name: 'object'
});
_defineProperty(this, "parse", void 0);
_defineProperty(this, "utils", void 0);
this.utils = {
// @ts-ignore circular
object: CircularDeps.createObjectType(def)
};
this.parse = this.applyParser({
parse: (input, _options) => {
return this.utils.object.parse(input, _options);
}
});
}
}
_defineProperty(ObjectField, "create", def => {
return new ObjectField(def);
});
//# sourceMappingURL=ObjectField.js.map