%PDF- %PDF-
Direktori : /var/www/html/node_modules/yup/lib/ |
Current File : /var/www/html/node_modules/yup/lib/Reference.js |
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.create = create; exports.default = void 0; var _propertyExpr = require("property-expr"); const prefixes = { context: '$', value: '.' }; function create(key, options) { return new Reference(key, options); } class Reference { constructor(key, options = {}) { this.key = void 0; this.isContext = void 0; this.isValue = void 0; this.isSibling = void 0; this.path = void 0; this.getter = void 0; this.map = void 0; if (typeof key !== 'string') throw new TypeError('ref must be a string, got: ' + key); this.key = key.trim(); if (key === '') throw new TypeError('ref must be a non-empty string'); this.isContext = this.key[0] === prefixes.context; this.isValue = this.key[0] === prefixes.value; this.isSibling = !this.isContext && !this.isValue; let prefix = this.isContext ? prefixes.context : this.isValue ? prefixes.value : ''; this.path = this.key.slice(prefix.length); this.getter = this.path && (0, _propertyExpr.getter)(this.path, true); this.map = options.map; } getValue(value, parent, context) { let result = this.isContext ? context : this.isValue ? value : parent; if (this.getter) result = this.getter(result || {}); if (this.map) result = this.map(result); return result; } /** * * @param {*} value * @param {Object} options * @param {Object=} options.context * @param {Object=} options.parent */ cast(value, options) { return this.getValue(value, options == null ? void 0 : options.parent, options == null ? void 0 : options.context); } resolve() { return this; } describe() { return { type: 'ref', key: this.key }; } toString() { return `Ref(${this.key})`; } static isRef(value) { return value && value.__isYupRef; } } // @ts-ignore exports.default = Reference; Reference.prototype.__isYupRef = true;