Hey team-
I noticed in the CHANGELOG that 7.1.0 added modifyPath (f1c87de) (which I was very excited to see), but the function doesn't actually seem to be present, at least not when Rambda is installed from npm:
$ mkdir foo && cd foo
$ npm install rambda@7.1.4
added 1 package, and audited 2 packages in 1s
found 0 vulnerabilities
$ node
Welcome to Node.js v16.15.0.
Type ".help" for more information.
> const R = require('rambda')
undefined
> R.modifyPath
undefined
> R.assoc // just to make sure it's actually rambda
[Function (anonymous)]
It seems the module hasn't found its way to src/ yet, so maybe this is a CI/CD bug that's omitting this from the codegen step (or skipping that step altogether)?
Hey team-
I noticed in the CHANGELOG that 7.1.0 added
modifyPath(f1c87de) (which I was very excited to see), but the function doesn't actually seem to be present, at least not when Rambda is installed from npm:It seems the module hasn't found its way to
src/yet, so maybe this is a CI/CD bug that's omitting this from the codegen step (or skipping that step altogether)?