Swap-Aggregator-Subgraph/node_modules/class-is/test/fixtures/es6/Algae.js
2022-07-03 07:27:35 +05:30

17 lines
303 B
JavaScript

'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;