var isType = require('./isType');
// returns true if x is an instance of type
module.exports = function is(x, type) {
if (isType(type)) {
return type.is(x);
}
return x instanceof type; // type should be a class constructor
};
Выполнить команду
Для локальной разработки. Не используйте в интернете!