projecte_ionic/node_modules/core-js/internals/an-instance.js
2022-02-09 18:30:03 +01:00

6 lines
185 B
JavaScript
Executable file

module.exports = function (it, Constructor, name) {
if (!(it instanceof Constructor)) {
throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
} return it;
};