New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mdlinkc

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdlinkc - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

7

bin/check_if_dir_exists.js

@@ -33,9 +33,10 @@ "use strict";

return __awaiter(this, void 0, void 0, function* () {
let status;
try {
yield _checkIfDirExists(cwd, dirName);
return true;
status = yield _checkIfDirExists(cwd, dirName);
}
catch (err) {
return false;
status = false;
}
return status;
});

@@ -42,0 +43,0 @@ }

{
"name": "mdlinkc",
"version": "0.0.5",
"version": "0.0.6",
"lockfileVersion": 1,

@@ -5,0 +5,0 @@ "requires": true,

{
"name": "mdlinkc",
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",

@@ -5,0 +5,0 @@ "author": "Valera Rozuvan",

@@ -27,8 +27,11 @@ import * as fs from 'fs'

async function checkIfDirExists(cwd, dirName) {
let status
try {
await _checkIfDirExists(cwd, dirName)
return true
status = await _checkIfDirExists(cwd, dirName)
} catch (err) {
return false
status = false
}
return status
}

@@ -35,0 +38,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