I tried this code, which throws incrRegEx is not a function.
const ir = require("incr-regex-package");
const { incrRegEx } = ir;
Downgrading to v1.0.3 works BTW.
So I dug deeper later and saw in node_modules that in v1.0.4, there is no export for incrRegEx, which is literally the heart of this package.
Just wanted to know if this package is being actively maintained (and is it safe to use), and also did someone accidentally pushed /published their test code as v1.0.4 to npm, without ever committing here?
In the package version 1.0.4, as listed as the latest one here: https://www.npmjs.com/package/incr-regex-package [PS: The commits on master are only till 1.0.3]
I tried this code, which throws
incrRegEx is not a function.
Downgrading to v1.0.3 works BTW.
So I dug deeper later and saw in node_modules that in v1.0.4, there is no export for
incrRegEx
, which is literally the heart of this package.Just wanted to know if this package is being actively maintained (and is it safe to use), and also did someone accidentally pushed /published their test code as v1.0.4 to npm, without ever committing here?
Thanks!