Files
boc/services/frilans-payout/node_modules/sonic-boom/example.js
T

9 lines
185 B
JavaScript
Raw Normal View History

'use strict'
const SonicBoom = require('.')
const sonic = new SonicBoom({ fd: process.stdout.fd }) // or 'destination'
for (let i = 0; i < 10; i++) {
sonic.write('hello sonic\n')
}