pull-uuid
v0.1.1
Published
uuid generation as an infinite pull stream
Downloads
7
Readme
pull-uuid
uuid generation as an infitite pull stream
Usage
var pullUuid = require('pull-uuid')
var buf = new Buffer(16)
var options = {
version: 'v4',
uuidOpts: {},
buffer: buf,
offset: 0
}
var uuid = pullUuid(options)If no options object is provided it will generate uuid v4 strings.
