PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/iso-url/src

Просмотр файла: url.js

'use strict';

const { URL, URLSearchParams, format } = require('url');

// https://github.com/nodejs/node/issues/12682
const defaultBase = 'http://localhost';

class URLWithLegacySupport extends URL {
    constructor(url = '', base = defaultBase) {
        super(url, base);
        this.path = this.pathname + this.search;
        this.auth =
            this.username && this.password ?
                this.username + ':' + this.password :
                null;
        this.query =
            this.search && this.search.startsWith('?') ?
                this.search.slice(1) :
                null;
    }

    format() {
        return this.toString();
    }
}

module.exports = {
    URLWithLegacySupport,
    URLSearchParams,
    format,
    defaultBase
};

Выполнить команду


Для локальной разработки. Не используйте в интернете!