Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions benchmark/esm/get-data-protocol-format.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Benchmarks defaultGetFormat() on `data:` URLs. The MIME-matching regex used
// to be susceptible to catastrophic backtracking on malformed input lacking a
// `,` separator (https://github.com/nodejs/node/issues/61904); `pathLength`
// scales the malformed path so a regression shows up as a sharp drop in ops/sec
// rather than a hang.
'use strict';

const common = require('../common.js');

const configs = {
n: [1e4],
pathLength: [1e2, 1e3, 1e4],
};

const options = {
flags: ['--expose-internals'],
};

const bench = common.createBenchmark(main, configs, options);

function main({ n, pathLength }) {
const { defaultGetFormat } = require('internal/modules/esm/get_format');
const url = new URL(`data:a/${'a'.repeat(pathLength)}B`);

bench.start();
for (let i = 0; i < n; i++) {
defaultGetFormat(url, { parentURL: undefined });
}
bench.end(n);
}
2 changes: 1 addition & 1 deletion lib/internal/modules/esm/get_format.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function detectModuleFormat(source, url) {
*/
function getDataProtocolModuleFormat(parsed) {
const { 1: mime } = RegExpPrototypeExec(
/^([^/]+\/[^;,]+)(?:[^,]*?)(;base64)?,/,
/^([^/]+\/[^;,]+)(?:;[^,]*)?,/,
parsed.pathname,
) || [ null, null, null ];

Expand Down
2 changes: 1 addition & 1 deletion lib/internal/modules/esm/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ function throwIfUnsupportedURLScheme(parsed) {
*/
function throwUnknownModuleFormat(url, format) {
const dataUrl = RegExpPrototypeExec(
/^data:([^/]+\/[^;,]+)(?:[^,]*?)(;base64)?,/,
/^data:([^/]+\/[^;,]+)(?:;[^,]*)?,/,
url,
);

Expand Down