UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

8 lines (7 loc) 161 B
/** * Ensure some object is a coerced to a string **/ module.exports = function makeString(object) { if (object == null) return ''; return '' + object; };