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

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