UNPKG

avl-tree-adt

Version:
15 lines (13 loc) 336 B
(function() { 'use strict'; var AVLTree = {}; if (typeof define === 'function' && define.amd) { define(function() { return AVLTree; }); } else if (typeof module !== 'undefined' && module.exports) { module.exports = AVLTree; } else { window.AVLTree = AVLTree; } })();