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

'use strict';

const withIs = require('../../..');

function Animal(type) {
    this.type = type;
}

Animal.prototype.getType = function () {
    return this.type;
};

module.exports = withIs.proto(Animal, {
    className: 'Animal',
    symbolName: '@org/package/Animal',
});
module.exports.WrappedClass = Animal;
Back to Directory File Manager