UNPKG

246 BJavaScriptView Raw
1/**
2 * Clojure
3 */
4module.exports = {
5 // find document blocks between ';;;;' and ';;;;'
6 docBlocksRegExp: /\;{4}\uffff?(.+?)\uffff?(?:\s*)?;{4}/g,
7 // remove not needed ' ;; ' at the beginning
8 inlineRegExp: /^(\s*)?(;{2})[ ]?/gm
9};