1
0
mirror of https://github.com/thangisme/notes.git synced 2025-09-24 04:04:17 -04:00

Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

35
node_modules/ldjson-stream/test.js generated vendored Normal file
View File

@@ -0,0 +1,35 @@
var test = require('tape')
var ldj = require('./')
var os = require('os')
test('.parse', function(t) {
var parser = ldj.parse()
parser.on('data', function(obj) {
t.equal(obj.hello, 'world')
t.end()
})
parser.write('{"hello": "world"}\n')
})
test('.parse twice', function(t) {
var parser = ldj.parse()
parser.once('data', function(obj) {
t.equal(obj.hello, 'world')
parser.once('data', function(obj) {
t.equal(obj.hola, 'mundo')
t.end()
})
})
parser.write('{"hello": "world"}\n{"hola": "mundo"}\n')
})
test('.serialize', function(t) {
var serializer = ldj.serialize()
serializer.on('data', function(data) {
t.equal(data, '{"hello":"world"}' + os.EOL)
t.end()
})
serializer.write({hello: 'world'})
})