/var/www/greso.tech/server/nsm/node_modules/jsdoc/lib/jsdoc/util
NameSizeModeActions
cast.js23110644editdlrm
doop.js19760644editdlrm
dumper.js35320644editdlrm
error.js11250644editdlrm
logger.js75630644editdlrm
markdown.js87910644editdlrm
stripbom.js3220644editdlrm
templateHelper.js319340644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/jsdoc/lib/jsdoc/util/stripbom.js (322B)
/** * Module to strip the leading BOM, if present, from UTF-8 files. * @module * @private */ /** * Strip the leading BOM, if present, from a string. * * @private * @param {string} text - The string to strip. * @return {string} The stripped string. */ exports.strip = (text = '') => text.replace(/^\uFEFF/, '');