UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

7 lines (5 loc) 177 B
var makeString = require('./helper/makeString'); module.exports = function decapitalize(str) { str = makeString(str); return str.charAt(0).toLowerCase() + str.slice(1); };