mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-12-14 13:46:54 +00:00
Rebuild dist
This commit is contained in:
6
dist/index.js
generated
vendored
6
dist/index.js
generated
vendored
@@ -39,7 +39,11 @@ function getAugmentedNamespace(n) {
|
|||||||
var f = n.default;
|
var f = n.default;
|
||||||
if (typeof f == "function") {
|
if (typeof f == "function") {
|
||||||
var a = function a () {
|
var a = function a () {
|
||||||
if (this instanceof a) {
|
var isInstance = false;
|
||||||
|
try {
|
||||||
|
isInstance = this instanceof a;
|
||||||
|
} catch {}
|
||||||
|
if (isInstance) {
|
||||||
return Reflect.construct(f, arguments, this.constructor);
|
return Reflect.construct(f, arguments, this.constructor);
|
||||||
}
|
}
|
||||||
return f.apply(this, arguments);
|
return f.apply(this, arguments);
|
||||||
|
|||||||
Reference in New Issue
Block a user