Viewing File: /home/ubuntu/todaykat-frontend-base/node_modules/class-is/test/fixtures/es5/Algae.js

'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;
Back to Directory File Manager