5987fb53cb32f44af8e99bbfca179e94ab153d3634f10ae6c5af48ed6082d7418b0abe45c4328219b92114cebd360b9694fa85ac0d725d9fe9ec88574787f9 400 B

1234567891011121314
  1. 'use strict';
  2. module.exports = options => {
  3. options = Object.assign({
  4. onlyFirst: false
  5. }, options);
  6. const pattern = [
  7. '[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
  8. '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
  9. ].join('|');
  10. return new RegExp(pattern, options.onlyFirst ? undefined : 'g');
  11. };