module EJS
ejs
1.1.1
# js_escape!
def js_escape!(source) source.gsub!(JS_ESCAPE_PATTERN) { |match| '\\' + JS_ESCAPES[match] } source end