ZJONSSON/node-unzipper

TypeError: Promise.map is not a function after upgrade to 0.11.3

Closed this issue · 4 comments

Node: 18

The error relates to node_modules/unzipper/lib/Open/directory.js, line 155.

  return Promise.map(files, function(entry) {

Promise.map looks like it's a feature of bluebird: http://bluebirdjs.com/docs/api/promise.map.html

I can't see that the Bluebird promise is being imported though, so it looks like it's using the native Promise, which doesn't support the .map function?

Thanks @craigcartmell, can you give me the specific node version and platform (linux, mac windows) and the error stack?

The line you referred to is tested on node v.10 up to v.19 https://zjonsson.github.io/node-unzipper/node-unzipper/lib/Open/directory.js.html, so it's not immediately clear to me what is going on

@ZJONSSON - Apologies, I think this is only breaking in our tests, which suggests a mocking issue or something strange with our test environment.

I'll close this.

Please upgrade to 0.11.4, there was a discrepancy between published and master

Thanks @ZJONSSON - That fixed the issue