Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../uploads/../../../../instantly.picotech.app/homes/../../wa.picotech.app/public_html/node_modules/escape-html/../querystring/../@protobufjs/../once/../get-intrinsic/./../cliui/../pino/../mime/../cheerio/../express-validator/declarations/../src
الملفات الموجودة في هذا الـ Path:
.
..
base.d.ts
base.js
chain
context-builder.d.ts
context-builder.js
context-items
context.d.ts
context.js
express-validator.d.ts
express-validator.js
field-selection.d.ts
field-selection.js
index.d.ts
index.js
matched-data.d.ts
matched-data.js
middlewares
options.d.ts
options.js
utils.d.ts
utils.js
validation-result.d.ts
validation-result.js

مشاهدة ملف: context-builder.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContextBuilder = void 0;
const context_1 = require("./context");
class ContextBuilder {
    constructor() {
        this.stack = [];
        this.fields = [];
        this.locations = [];
        this.optional = false;
        this.requestBail = false;
    }
    setFields(fields) {
        this.fields = fields;
        return this;
    }
    setLocations(locations) {
        this.locations = locations;
        return this;
    }
    setMessage(message) {
        this.message = message;
        return this;
    }
    addItem(...items) {
        this.stack.push(...items);
        return this;
    }
    setOptional(options) {
        this.optional = options;
        return this;
    }
    setRequestBail() {
        this.requestBail = true;
        return this;
    }
    build() {
        return new context_1.Context(this.fields, this.locations, this.stack, this.optional, this.requestBail, this.message);
    }
}
exports.ContextBuilder = ContextBuilder;