Socket
Socket
Sign inDemoInstall

jsdoc-to-markdown

Package Overview
Dependencies
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsdoc-to-markdown - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

partials/copyright.hbs

2

helpers/constructor-has-docs.js

@@ -5,4 +5,4 @@ var a = require("array-tools");

handlebars.registerHelper("constructorHasDocs", function(){
return this.kind === "class" && (this.description || this.params || this.returns);
return this.kind === "class" && (this.classdesc || this.description || this.params || this.returns);
});
};

@@ -8,3 +8,3 @@ var a = require("array-tools"),

if (alias){
this.description = this.description || alias.description;
this.description = this.description || alias.classdesc || alias.description;
this.params = this.params || alias.params;

@@ -11,0 +11,0 @@ this.returns = this.returns || alias.returns;

{
"name": "jsdoc-to-markdown",
"author": "Lloyd Brookes",
"version": "0.2.4",
"version": "0.2.5",
"description": "Render JSdoc documentation as markdown",

@@ -6,0 +6,0 @@ "repository": "https://github.com/75lb/jsdoc-to-markdown",

@@ -14,6 +14,6 @@ /**

This function takes variable input
@param one {string} - an input
@param prop {...string} - the property(s) as input
@param ...three {string} - more input
@param {string} - an input
@param {...string} - the property(s) as input
@param three {...string} - more input
*/
Plucker.prototype.doPluck = function(one, args){};

@@ -393,3 +393,3 @@ #Global scope

<a name="Plucker#doPluck"></a>
###plucker.doPluck(one, ...prop, ...three)
###plucker.doPluck(one, ...args, ...three)
This function takes variable input

@@ -399,3 +399,3 @@

- one `string` - an input
- ...prop `string` - the property(s) as input
- ...args `string` - the property(s) as input
- ...three `string` - more input

@@ -402,0 +402,0 @@

@@ -13,3 +13,3 @@ #Global scope

<a name="Plucker#doPluck"></a>
###plucker.doPluck(one, ...prop, ...three)
###plucker.doPluck(one, ...args, ...three)
This function takes variable input

@@ -19,4 +19,4 @@

- one `string` - an input
- ...prop `string` - the property(s) as input
- ...args `string` - the property(s) as input
- ...three `string` - more input

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