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

apidoc-core

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apidoc-core - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

8

lib/workers/api_use.js

@@ -145,7 +145,9 @@ var _ = require('lodash');

function _recursiveMerge(block, matchedData) {
_.merge(block, matchedData, function(a, b) {
if(a instanceof Array)
_.mergeWith(block, matchedData, function(a, b) {
if(a instanceof Array) {
return a.concat(b);
if(_.isObject(a))
}
if(_.isObject(a)) {
_recursiveMerge(a, b);
}
return a;

@@ -152,0 +154,0 @@ });

{
"name": "apidoc-core",
"version": "0.6.0",
"version": "0.6.1",
"description": "Core parser library to generate apidoc result following the apidoc-spec",

@@ -36,3 +36,3 @@ "author": "Peter Rottmann <rottmann@inveris.de>",

"dependencies": {
"lodash": "~4.3.0",
"lodash": "~4.5.0",
"semver": "~5.1.0",

@@ -39,0 +39,0 @@ "wrench": "~1.5.8"

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