Code coverage report for node_modules/babel-runtime/helpers/class-call-check.js

Statements: 75% (3 / 4)      Branches: 50% (1 / 2)      Functions: 100% (1 / 1)      Lines: 75% (3 / 4)      Ignored: none     

All files » node_modules/babel-runtime/helpers/ » class-call-check.js
1 2 3 4 5 6 7 8 9    3 25         3
"use strict";
 
exports["default"] = function (instance, Constructor) {
  Iif (!(instance instanceof Constructor)) {
    throw new TypeError("Cannot call a class as a function");
  }
};
 
exports.__esModule = true;