18 lines
369 B
JavaScript
18 lines
369 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const withIs = require('../../..');
|
||
|
const Plant = require('./Plant');
|
||
|
|
||
|
function Algae() {
|
||
|
Plant.call(this, 'algae');
|
||
|
}
|
||
|
|
||
|
Algae.prototype = Object.create(Plant.prototype);
|
||
|
Algae.prototype.constructor = Algae;
|
||
|
|
||
|
module.exports = withIs.proto(Algae, {
|
||
|
className: 'Algae',
|
||
|
symbolName: '@org/package/Algae',
|
||
|
});
|
||
|
module.exports.WrappedClass = Algae;
|