Height.js 610 B

1234567891011121314151617
  1. // Generated by CoffeeScript 1.9.3
  2. var Height, _Length,
  3. extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
  4. hasProp = {}.hasOwnProperty;
  5. _Length = require('./_Length');
  6. module.exports = Height = (function(superClass) {
  7. extend(Height, superClass);
  8. function Height() {
  9. return Height.__super__.constructor.apply(this, arguments);
  10. }
  11. return Height;
  12. })(_Length);