Hosting Test - GitHub Pages with Official Docker Image

Babel

The build will fail under any of the following conditions:

JS

function greet(input) {
  console.log(input ?? "Hello, World!");
}
greet();

JS after Babel

"use strict";

function greet(input) {
  console.log(input !== null && input !== void 0 ? input : "Hello, World!");
}
greet();