UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

13 lines (10 loc) 248 B
"use strict"; /* Class utilities */ var classes = { subclass: function(child, parent) { function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); } }; module.exports = classes;