aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@babel/runtime/helpers/es6/assertThisInitialized.js
blob: bbf849ca50e66f60bb95da3091fbc944e73f1669 (plain)
1
2
3
4
5
6
7
export default function _assertThisInitialized(self) {
  if (self === void 0) {
    throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
  }

  return self;
}