check-ethereum-scanner
Version:
Safety checks for new Ethereum tokens
18 lines (13 loc) • 314 B
JavaScript
;
const withIs = require('../../..');
function Animal(type) {
this.type = type;
}
Animal.prototype.getType = function () {
return this.type;
};
module.exports = withIs.proto(Animal, {
className: 'Animal',
symbolName: '@org/package/Animal',
});
module.exports.WrappedClass = Animal;