mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
14 lines
312 B
JavaScript
14 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);
|
|
};
|