DatatypeNode.js

13 lines | 276 B Blame History Raw Download
var RectangularNode = require("./RectangularNode");

module.exports = (function (){
  
  var o = function ( graph ){
    RectangularNode.apply(this, arguments);
  };
  o.prototype = Object.create(RectangularNode.prototype);
  o.prototype.constructor = o;
  
  return o;
}());