Wojciech Pawlik
Wojciech Pawlik
Could I configure `fish` to `fg` on ^Z? :think:
It's [already possible](https://github.com/telegraf/telegraf/blob/develop/.github/workflows/release-docs.yml) to deploy `typedoc`-generated docs to GitHub Pages. Therefore, `TypeStrong/[email protected]` should focus on simplicity and reliability, not on fitting every workflow. Docs should be built by running `yarn...
`typedoc` CLI could default `entryPoints` to `['src/index.ts']`. I doubt 0conf is attainable before `[email protected]`. I don't think there's a good version to default to.
Sounds to me like `R.difference(oKeys, R.keys(o)`, or, as a function, `R.useWith(R.difference, [R.identity, R.keys])`
And, I'm not sure if `maxListBy` and `minListBy` are needed: ```js const longer = R.maxBy(R.length) const longest = R.reduce(longer) const longestString = longest('') longestString(['foo', 'foobar', 'foooooooo'] //=> 'foooooooo' longestString([]) //=>...
Related: https://github.com/calmm-js/partial.lenses#L-prefix https://github.com/calmm-js/partial.lenses#L-slice
We could also define `setSlice`: ```js const setSlice = R.curry((bgn, end, replacement, target) => RA.concatAll([RA.sliceTo(bgn, target), replacement, RA.sliceFrom(end, target)])) // Then const lensSlice = R.curry((bgn, end) => R.lens(R.slice(bgn, end), setSlice(bgn,...
I don't think opening an issue is necessary, I don't think it needs discussion. Except name, for which I suggest `updateSlice`, because it's more akin to [`R.update`](http://ramdajs.com/docs/#update) than [`R.adjust`](http://ramdajs.com/docs/#adjust).
`stripLinebreaks` -- `trim` is often used for that, it strips all whitespace from beggining and end of the string. What `stripWhitespace` would be supposed to do? `wrap` should have fixed...
`R.concat(s)` or `R.concat(R.__, s)` could be used instead, but I think `R.prepend(s)` and `R.append(s)` just sound better.