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.
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 stringhello/**/ worldwill becomehelloinstead ofhello world.This bug only affects block comments of the form
/**/. E.g./***/and/******/are unaffected.