Your IP : 216.73.216.40


Current Path : /var/www/html/test/wetty2/node_modules/pegjs/lib/utils/
Upload File :
Current File : /var/www/html/test/wetty2/node_modules/pegjs/lib/utils/classes.js

"use strict";

/* Class utilities */
var classes = {
  subclass: function(child, parent) {
    function ctor() { this.constructor = child; }
    ctor.prototype = parent.prototype;
    child.prototype = new ctor();
  }
};

module.exports = classes;