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

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

7 lines
307 B
JavaScript
Raw Normal View History

2023-01-18 20:50:03 +00:00
function _classPrivateMethodGet(receiver, privateSet, fn) {
if (!privateSet.has(receiver)) {
throw new TypeError("attempted to get private field on non-instance");
}
return fn;
}
module.exports = _classPrivateMethodGet, module.exports.__esModule = true, module.exports["default"] = module.exports;