"> supports-preserve-symlinks-flag 30f7226d9a first commit il y a 2 ans tailwind-color-palette 30f7226d9a first commit il y a 2 ans tailwindcss 30f7226d9a first commit il y a 2 ans thenify 30f7226d9a first commit il y a 2 ans thenify-all 30f7226d9a first commit il y a 2 ans to-regex-range 30f7226d9a first commit il y a 2 ans tr46 30f7226d9a first commit il y a 2 ans ts-interface-checker 30f7226d9a first commit il y a 2 ans uglify-js 30f7226d9a first commit il y a 2 ans underscore 30f7226d9a first commit il y a 2 ans upper-case 30f7226d9a first commit il y a 2 ans util-deprecate 30f7226d9a first commit il y a 2 ans valid-data-url 30f7226d9a first commit il y a 2 ans web-resource-inliner 30f7226d9a first commit il y a 2 ans webidl-conversions 30f7226d9a first commit il y a 2 ans whatwg-url 30f7226d9a first commit il y a 2 ans wrap-ansi 30f7226d9a first commit il y a 2 ans wrappy 30f7226d9a first commit il y a 2 ans y18n 30f7226d9a first commit il y a 2 ans yallist 30f7226d9a first commit il y a 2 ans yaml 30f7226d9a first commit il y a 2 ans yargs 30f7226d9a first commit il y a 2 ans yargs-parser 30f7226d9a first commit il y a 2 ans .yarn-integrity 30f7226d9a first commit il y a 2 ans tum/network_report_server - Gogs: Simplico Git Service

Açıklama Yok

index.js 350B

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