Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-micromatch /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
micromatch.braces.js
223
B
-rw-r--r--
option-expandRange.js
568
B
-rw-r--r--
option-ignore.js
227
B
-rw-r--r--
option-onIgnore.js
359
B
-rw-r--r--
option-onMatch.js
436
B
-rw-r--r--
option-onResult.js
260
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : option-expandRange.js
'use strict'; const fill = require('fill-range'); const micromatch = require('..'); const regex = micromatch.makeRe('foo/{01..25}/bar', { expandRange(a, b) { return `(${fill(a, b, { toRegex: true })})`; } }); console.log(regex); //=> /^(?:foo\/((?:0[1-9]|1[0-9]|2[0-5]))\/bar)$/ console.log(regex.test('foo/00/bar')) // false console.log(regex.test('foo/01/bar')) // true console.log(regex.test('foo/10/bar')) // true console.log(regex.test('foo/22/bar')) // true console.log(regex.test('foo/25/bar')) // true console.log(regex.test('foo/26/bar')) // false
Close