UNPKG

crojsdoc

Version:

A documentation generator for JavaScript and CoffeeScript

11 lines (9 loc) 263 B
// Generated by CoffeeScript 2.4.1 //# // Escape the given `html`. // @param {String} html // @return {String} // @api private exports.escape = function(html) { return String(html).replace(/&(?!\w+;)/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;'); };