17 lines
303 B
JavaScript
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;
|