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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/node_modules/svg.js/spec/spec/   drwxrwxr-x
Free 13.18 GB of 57.97 GB (22.73%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     regex.js (2.98 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
describe('Regex', function() {

  describe('matchers', function() {

    describe('numberAndUnit', function() {
      var match

      it('is true with a positive unit value', function() {
        match = ('10%').match(SVG.regex.numberAndUnit)
        expect(match[1]).toBe('10')
        expect(match[5]).toBe('%')
      })
      it('is true with a negative unit value', function() {
        match = ('-11%').match(SVG.regex.numberAndUnit)
        expect(match[1]).toBe('-11')
        expect(match[5]).toBe('%')
      })
      it('is false with a positive unit value', function() {
        match = ('NotAUnit').match(SVG.regex.numberAndUnit)
        expect(match).toBeNull()
      })

      it('is true with a number', function() {
        ["1", "-1", "+15", "1.55", ".5", "5.", "1.3e2", "1E-4", "1e+12"].forEach(function(s) {
          expect(SVG.regex.numberAndUnit.test(s)).toBeTruthy()
        })
      })
      it('is false with a faulty number', function() {
        ["+-1", "1.2.3", "1+1", "1e4.5", ".5.", "1f5", "."].forEach(function(s) {
          expect(SVG.regex.numberAndUnit.test(s)).toBeFalsy()
        })
      })
      it('is true with a number with unit', function() {
        ["1px", "-1em", "+15%", "1.55s", ".5pt", "5.deg", "1.3e2rad", "1E-4grad", "1e+12cm"].forEach(function(s) {
          expect(SVG.regex.numberAndUnit.test(s)).toBeTruthy()
        })
      })
      it('is false with a faulty number or wrong unit', function() {
        ["1em1", "-1eq,5"].forEach(function(s) {
          expect(SVG.regex.numberAndUnit.test(s)).toBeFalsy()
        })
      })

    })
  })

  describe('testers', function() {

    describe('isHex', function() {
      it('is true with a three based hex', function() {
        expect(SVG.regex.isHex.test('#f09')).toBeTruthy()
      })
      it('is true with a six based hex', function() {
        expect(SVG.regex.isHex.test('#fe0198')).toBeTruthy()
      })
      it('is false with a faulty hex', function() {
        expect(SVG.regex.isHex.test('###')).toBeFalsy()
        expect(SVG.regex.isHex.test('#0')).toBeFalsy()
        expect(SVG.regex.isHex.test('f06')).toBeFalsy()
      })
    })

    describe('isRgb', function() {
      it('is true with an rgb value', function() {
        expect(SVG.regex.isRgb.test('rgb(255,66,100)')).toBeTruthy()
      })
      it('is false with a non-rgb value', function() {
        expect(SVG.regex.isRgb.test('hsb(255, 100, 100)')).toBeFalsy()
      })
    })

    describe('isNumber', function() {

      it('is true with a number', function() {
        ["1", "-1", "+15", "1.55", ".5", "5.", "1.3e2", "1E-4", "1e+12"].forEach(function(s) {
          expect(SVG.regex.isNumber.test(s)).toBeTruthy()
        })
      })

      it('is false with a faulty number', function() {
        ["1a", "+-1", "1.2.3", "1+1", "1e4.5", ".5.", "1f5", "."].forEach(function(s) {
          expect(SVG.regex.isNumber.test(s)).toBeFalsy()
        })
      })

    })



  })

})

:: 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.0043 ]--