Michael Keller

Results 307 comments of Michael Keller

+1 to avoid this madness https://twitter.com/mhkeller/status/628313024139558912/photo/1

I can do this as page off of gh-pages if you haven't started already

The files are there, do you have an existing form we can put in? https://github.com/veltman/fourscore/commit/53a098e0985ccbcbd0b265fbf4747af867792675

I would favor non-env variables because of their obscurity and the higher startup cost for new users.

this has some interesting asynchronous csv parsing and writing https://csv.js.org/

It wouldn't be an api change just adding a trim here. Something like this: https://github.com/mhkeller/indian-ocean/pull/95

This is mostly done on the `trim` branch. Since it's a breaking change, I'm going to wait until this is done https://github.com/mhkeller/indian-ocean/issues/102

It could be its own function that compares the data against the existing file: ``` io.writeDiffSync('path/to/file.csv', 'path/to/diff.diff', data) ``` If `'path/to/diff.diff'` already exists, it could sequentially make a new file....

A way to do this without adding another `fs.stats` and `fs.statsSync` call is to add a '/' to dirs when they're initially read. This is a minor, but breaking change.

i'm thinking by default it should return a flat array and then have an option to have it mirror your directory structure. which behavior were you expecting @1wheel?