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

inpath

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inpath - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

lib/inpath.js

@@ -0,2 +1,6 @@

var existsSync = require('fs').existsSync;
var path = require('path');
if (!existsSync) {
existsSync = path.existsSync;
}

@@ -16,3 +20,3 @@ exports = module.exports = {

pos = path.join(dirs[i], target)
if (path.existsSync(pos)) {
if (existsSync(pos)) {
return pos;

@@ -19,0 +23,0 @@ }

7

package.json

@@ -5,3 +5,3 @@ {

"description": "Find executable in path",
"version": "1.0.0",
"version": "1.0.1",
"main": "./lib/inpath.js",

@@ -15,4 +15,3 @@ "homepage": "https://github.com/calmh/node-inpath",

},
"dependencies": {
},
"dependencies": {},
"devDependencies": {

@@ -24,4 +23,4 @@ "should": "0.6.x",

"engines": {
"node": "0.6.x"
"node": "*"
}
}
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