You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
TypeError: Cannot convert a Symbol value to a string
at Unpack.<anonymous> (zone.js/dist/zone-node.js:1688:52)
at new Parser (/gulp-custom-plugin/node_modules/custom-module/node_modules/tar/lib/parse.js:70:12)
at new <anonymous> (/gulp-custom-plugin/node_modules/custom-module/node_modules/tar/lib/warn-mixin.js:2:26)
at new Unpack (/gulp-custom-plugin/node_modules/custom-module/node_modules/tar/lib/unpack.js:52:5)
at extract (/gulp-custom-plugin/node_modules/custom-module/node_modules/tar/lib/extract.js:111:10)
at Object.module.exports (/gulp-custom-plugin/node_modules/custom-module/node_modules/tar/lib/extract.js:38:7)
at extractStream (/gulp-custom-plugin/node_modules/custom-module/node_modules/pacote/lib/extract-stream.js:39:1
This is causing an issue in the node-tar library, for instance.
When Zone.js is running in Node, it appears to be wrapping Node's EventEmitter methods, causing issues when the
eventNameis a Symbol. Node's documentation states thateventNamecan be a string or a symbol.However, Zone tries to coerce
eventNameinto a string:zone.js/lib/common/events.ts
Line 383 in e9536ec
This causes an error:
This is causing an issue in the
node-tarlibrary, for instance.