github-pages-deploy-action/node_modules/ansi-regex/index.js

11 lines
317 B
JavaScript
Raw Normal View History

2020-01-28 13:07:56 +08:00
'use strict';
2020-03-02 21:16:42 +08:00
module.exports = ({onlyFirst = false} = {}) => {
2020-01-28 13:07:56 +08:00
const pattern = [
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
].join('|');
2020-03-02 21:16:42 +08:00
return new RegExp(pattern, onlyFirst ? undefined : 'g');
2020-01-28 13:07:56 +08:00
};