Welcome to mirror list, hosted at ThFree Co, Russian Federation.

newArrowCheck.js « helpers « runtime « @babel « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b59f58c87f85f2f08224aec3dba9b2ffbdf648c (plain)
1
2
3
4
5
6
7
function _newArrowCheck(innerThis, boundThis) {
  if (innerThis !== boundThis) {
    throw new TypeError("Cannot instantiate an arrow function");
  }
}

module.exports = _newArrowCheck;