UNPKG

capnp-js

Version:

Capnproto run-time decoding and encoding for Node

14 lines (12 loc) 334 B
var Terminal = function() {}; Terminal.prototype.equiv = function(rhs) { return this === rhs; }; var List = function(child) { this.child = child; }; List.prototype.equiv = function(rhs) { return this.child.equiv(rhs.child); }; exports.Terminal = Terminal; exports.List = List;