UNPKG

sylvester-es6

Version:

Fork of the famous Sylvester vector, matrix and geometry library. Rewritten in ES6 and including the glUtils.js add-ons.

10 lines (9 loc) 164 B
"use strict"; export class LinkedListNode { constructor (data) { this.prev = null; this.next = null; this.data = data; } }