mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-19 21:04:45 +00:00
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (nameForErrorMessage, window) {
|
|
if (!window) {
|
|
// Do nothing for window-less documents.
|
|
return;
|
|
}
|
|
|
|
const error = new Error(`Not implemented: ${nameForErrorMessage}`);
|
|
error.type = "not implemented";
|
|
|
|
window._virtualConsole.emit("jsdomError", error);
|
|
};
|