sylvester-es6
Version:
Fork of the famous Sylvester vector, matrix and geometry library. Rewritten in ES6 and including the glUtils.js add-ons.
17 lines (12 loc) • 472 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var LinkedListNode = exports.LinkedListNode = function LinkedListNode(data) {
_classCallCheck(this, LinkedListNode);
this.prev = null;
this.next = null;
this.data = data;
};
//# sourceMappingURL=LinkedListNode.js.map