UNPKG

next

Version:

The React Framework

28 lines (27 loc) 961 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "normalizedAssetPrefix", { enumerable: true, get: function() { return normalizedAssetPrefix; } }); function normalizedAssetPrefix(assetPrefix) { // remove all leading slashes and trailing slashes const escapedAssetPrefix = (assetPrefix == null ? void 0 : assetPrefix.replace(/^\/+|\/+$/g, '')) || false; // if an assetPrefix was '/', we return empty string // because it could be an unnecessary trailing slash if (!escapedAssetPrefix) { return ''; } if (URL.canParse(escapedAssetPrefix)) { const url = new URL(escapedAssetPrefix).toString(); return url.endsWith('/') ? url.slice(0, -1) : url; } // assuming assetPrefix here is a pathname-style, // restore the leading slash return "/" + escapedAssetPrefix; } //# sourceMappingURL=normalized-asset-prefix.js.map