Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsdoc

Package Overview
Dependencies
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsdoc - npm Package Compare versions

Comparing version 3.3.1 to 3.3.2

5

CHANGES.md

@@ -6,2 +6,7 @@ # JSDoc 3 change history

## 3.3.2 (June 2015)
JSDoc no longer crashes when parsing a large number of files, or a single object that has a large number of properties. (#976)
## 3.3.1 (June 2015)

@@ -8,0 +13,0 @@

4

lib/jsdoc/src/astnode.js

@@ -81,3 +81,3 @@ // TODO: docs

if (debugEnabled && !node.parentId) {
if (debugEnabled && typeof node.parentId === 'undefined') {
newProperties.parentId = {

@@ -91,3 +91,3 @@ enumerable: true,

if (debugEnabled && !node.enclosingScopeId) {
if (debugEnabled && typeof node.enclosingScopeId === 'undefined') {
newProperties.enclosingScopeId = {

@@ -94,0 +94,0 @@ enumerable: true,

@@ -495,8 +495,3 @@ /**

// for efficiency, if the node has a `parent` property, assume that we've already
// added the required properties
if (typeof node.parent !== 'undefined') {
astnode.addNodeProperties(node);
}
astnode.addNodeProperties(node);
node.parent = parent || null;

@@ -503,0 +498,0 @@

{
"name": "jsdoc",
"version": "3.3.1",
"revision": "1426697054695",
"version": "3.3.2",
"revision": "1434234028109",
"description": "An API documentation generator for JavaScript.",

@@ -6,0 +6,0 @@ "keywords": [

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