Smartphones app-development overview - as of 06.2015
Marketshare
Smartphones operating systems overview
Android - Google
- License:
- OS: Apache v2
- kernel: LGPL v3
const fs = require('fs'); | |
async function* lineSplitter(filepath) { | |
const content = fs.createReadStream(filepath, { | |
encoding: 'utf8', | |
}); | |
let previous = ''; | |
for await (const chunk of content) { | |
const lines = (previous + chunk).split('\n'); |