Yevhenii Ponomar
Yevhenii Ponomar
@cyrilis i just converted it to typescript, without reading code first. 😕 I did a bad job, but with `"strict": true` option. [forked repo](https://github.com/gcoda/epub-gen/tree/41a10804e885377f11c2fc2322cb171611c38626) Looks like it works, most likely...
@emagnier it took less than hour to convert this to typescript, with help of decaffeinate, and few simple types, since ES6 is still valid TypeScript you can cut some corners...
@mike-marcacci i am using it on live function for 5 days now You are correct, sometimes it will not fit, and there is no way of making streams from requests,...
Lambda has event.body and it looks like it needs to be handled same way as google`s rawBody. so, i need a middleware that makes request a readableStream out of rawBody...
Tests can pass with `const sep = opts.excerpt_separator || opts.delimiters[0];` But it looks like it should be inside `default.js` ``` if (opts.excerpt) { opts.excerpt_separator = opts.excerpt_separator || opts.delimiters[0]; } ```...
i am trying to stringify with custom excerpt_separator ```javascript var source = '---\nDATA: 1\n---\nEXCERPT\n\nBODY\n' var options = { excerpt: true, excerpt_separator: '' } var parsed = matter(source, options) var file...
> Just a heads up, currently this extension breaks the overview, no windows will be shown. It's probably already known I'm guessing, but might as well mention it. for me,...