mirror of https://github.com/webpack/webpack.git
11 lines
322 B
JavaScript
11 lines
322 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.greet = void 0;
|
|
var greet = function (name) {
|
|
if (typeof name !== "string") {
|
|
throw new TypeError("Invalid name type");
|
|
}
|
|
return "Hello, ".concat(name, "!");
|
|
};
|
|
exports.greet = greet;
|
|
//# sourceMappingURL=index.js.map
|