/
asias
/
new
Обзор
Документация
Войти
/
asias
/
new
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/source-map/lib/url.js
13 строк
476 B
AnastasyaDemina
project
07 дек 2025, 23:03
07 дек 2025, 23:03
7c21e25
Код
Авторство
О чём код?
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ "use strict"; // Note: This file is overridden in the 'package.json#browser' field to // substitute lib/url-browser.js instead. // Use the URL global for Node 10, and the 'url' module for Node 8. module.exports = typeof URL === "function" ? URL : require("url").URL;