Files
codeql-action/node_modules/@babel/runtime/helpers/assertThisInitialized.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
295 B
JavaScript
Raw Normal View History

2023-01-18 20:50:03 +00:00
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports;