Socket
Socket
Sign inDemoInstall

@es-joy/jsdoccomment

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@es-joy/jsdoccomment - npm Package Compare versions

Comparing version 0.28.0 to 0.28.1

6

CHANGES.md
# CHANGES for `@es-joy/jsdoccomment`
## 0.28.1
- fix(`getReducedASTNode`): token checking
- build: add Node 18 support (@WikiRik)
- chore: update devDeps.
## 0.28.0

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@es-joy/jsdoccomment",
"version": "0.28.0",
"version": "0.28.1",
"author": "Brett Zamir <brettz9@yahoo.com>",

@@ -5,0 +5,0 @@ "contributors": [],

@@ -166,5 +166,5 @@ /**

token = sourceCode.getTokenBefore(token, {includeComments: true});
} while (token.type === 'Punctuator' && token.value === '(');
} while (token && token.type === 'Punctuator' && token.value === '(');
if (token.type === 'Block') {
if (token && token.type === 'Block') {
return node;

@@ -171,0 +171,0 @@ }

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc