Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
268 B

  1. 'use strict'
  2. var split = require('./')
  3. var bench = require('fastbench')
  4. var fs = require('fs')
  5. function benchSplit (cb) {
  6. fs.createReadStream('package.json')
  7. .pipe(split())
  8. .on('end', cb)
  9. .resume()
  10. }
  11. var run = bench([
  12. benchSplit
  13. ], 10000)
  14. run(run)