• Justin Woo's avatar
    simplify webpack setup · 5fb755d4
    Justin Woo authored
    * make webpack dev server work again
    * use the purescript compiler output CommonJS modules from src/index.js
    * add prebuild "yarn compile" script
    * with "yarn dev", you now only need to run a purs ide plugin or run "yarn compile"
    5fb755d4
Regex.js 292 Bytes
function _cloneRegex(r) {
  return new RegExp(r.source, r.flags);
}
function _getRegexLastIndex(r) {
  return r.lastIndex;
}
function _execRegex(r, s) {
  return r.exec(s);
}
exports._cloneRegex = _cloneRegex;
exports._getRegexLastIndex = _getRegexLastIndex;
exports._execRegex = _execRegex;