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
In JavaScript / TypeScript, this package will strip not just the block comment but the entire remainder of the string when a block comment of the form /**/ is encountered. For example, the string hello/**/ world will become hello instead of hello world.
This bug only affects block comments of the form /**/. E.g. /***/ and /******/ are unaffected.