UNPKG

check-ethereum-scanner

Version:

Safety checks for new Ethereum tokens

17 lines (13 loc) 303 B
'use strict'; const withIs = require('../../..'); const Plant = require('./Plant'); class Algae extends Plant { constructor() { super('algae'); } } module.exports = withIs(Algae, { className: 'Algae', symbolName: '@org/package/Algae', }); module.exports.WrappedClass = Algae;