china.js
Version:
Can import the Corona Virus module
13 lines (12 loc) • 371 B
JavaScript
var CoronaVirus = (function () {
function CoronaVirus() {
}
CoronaVirus.prototype.infect = function () {
console.log('You cough on an innocent bystander');
};
CoronaVirus.prototype.cough = function () {
console.log('You cough in a random direction');
};
return CoronaVirus;
})();
exports.CoronaVirus = CoronaVirus;