UNPKG

logoots-structs

Version:

Provides several data structures to represent a text using a ropes-like structure and manipulating it

8 lines (6 loc) 159 B
var ResponseIntNode = function (i, node, path) { this.i = i || 0; this.node = node || null; this.path = path || null; }; module.exports = ResponseIntNode;