HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/root/usr/share/doc/node-tape/examples/stream/
Upload File :
Current File : //proc/1784574/root/usr/share/doc/node-tape/examples/stream/object.js
'use strict';

var test = require('tape');
var path = require('path');

test.createStream({ objectMode: true }).on('data', function (row) {
	console.log(JSON.stringify(row));
});

process.argv.slice(2).forEach(function (file) {
	require(path.resolve(file));
});