__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
var tape = require('tape')
var writer = require('./')
tape('is a write stream', function (t) {
var expected = ['hello', 'world', 'verden']
var ws = writer.obj(write)
ws.write('hello')
ws.write('world')
ws.write('verden')
ws.end(function () {
t.same(expected.length, 0)
t.end()
})
function write (data, enc, cb) {
t.same(data, expected.shift())
cb()
}
})
tape('is flushable', function (t) {
var expected = ['hello', 'world', 'verden']
var flushed = false
var ws = writer.obj(write, flush)
ws.write('hello')
ws.write('world')
ws.write('verden')
ws.end(function () {
t.same(expected.length, 0)
t.ok(flushed, 'was flushed')
t.end()
})
function write (data, enc, cb) {
t.same(data, expected.shift())
cb()
}
function flush (cb) {
flushed = true
process.nextTick(cb)
}
})
tape('can pass options', function (t) {
var expected = ['hello', 'world', 'verden']
var flushed = false
var ws = writer({objectMode: true}, write, flush)
ws.write('hello')
ws.write('world')
ws.write('verden')
ws.end(function () {
t.same(expected.length, 0)
t.ok(flushed, 'was flushed')
t.end()
})
function write (data, enc, cb) {
t.same(data, expected.shift())
cb()
}
function flush (cb) {
flushed = true
process.nextTick(cb)
}
})
tape('emits error on destroy', function (t) {
var expected = new Error()
var ws = writer({objectMode: true}, function () {})
ws.on('error', function (err) {
t.equal(err, expected)
})
ws.on('close', t.end)
ws.destroy(expected)
})
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| node_modules | Folder | 0755 |
|
|
| .travis.yml | File | 69 B | 0644 |
|
| LICENSE | File | 1.05 KB | 0644 |
|
| README.md | File | 1.12 KB | 0644 |
|
| example.js | File | 390 B | 0644 |
|
| index.js | File | 1.5 KB | 0644 |
|
| package.json | File | 1.69 KB | 0644 |
|
| test.js | File | 1.56 KB | 0644 |
|