Files
xiao/util/Util.js
T
Daniel Odendahl Jr c923e0091e Oops
2017-06-01 08:44:56 +00:00

14 lines
344 B
JavaScript

class Util {
static cleanXML(str) {
return str
.replace(/(<br \/>)/g, '')
.replace(/(&#039;)/g, '\'')
.replace(/(&mdash;)/g, '—')
.replace(/(&#034;|&quot;)/g, '"')
.replace(/(&#038;)/g, '&')
.replace(/(\[i\]|\[\/i\])/g, '*');
}
}
module.exports = Util;