Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 338 Bytes

readme.md

File metadata and controls

12 lines (9 loc) · 338 Bytes

package to parse out datagarrison text format

import { get } from 'datagarrison'
const centralpark = {user: 1105898, stream: 356136071740874}

(async (stream) => {
  const data = await get(stream)
  console.dir(data[0])
  console.dir(data[data.length - 1])
})(centralpark)

see test.js for usage