🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
548 B
JavaScript
Executable File
26 lines
548 B
JavaScript
Executable File
"use strict";
|
|
|
|
module.exports = function (url, options) {
|
|
if (!options) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
options = {};
|
|
} // eslint-disable-next-line no-underscore-dangle, no-param-reassign
|
|
|
|
|
|
url = url && url.__esModule ? url.default : url;
|
|
|
|
if (typeof url !== 'string') {
|
|
return url;
|
|
}
|
|
|
|
if (options.hash) {
|
|
// eslint-disable-next-line no-param-reassign
|
|
url += options.hash;
|
|
}
|
|
|
|
if (options.maybeNeedQuotes && /[\t\n\f\r "'=<>`]/.test(url)) {
|
|
return "\"".concat(url, "\"");
|
|
}
|
|
|
|
return url;
|
|
}; |