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

try-resolve

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

try-resolve

Try and resolve a filename

1.0.1
latest
Source
npm
Version published
Maintainers
1
Created
Source

try-resolve

Installation

$ npm install try-resolve

Usage

var resolve = require("try-resolve");

resolve(filename, [require])

  • filename is a filename to be resolved.
  • require is an optional instance of the require function from any file.

Returns null if the file can't be required, otherwise it returns an absolute filename string.

Example
if (require("try-resolve")("/home/sebastian/file")) {
  // this file can be required
} else {
  // it can't
}

resolve.relative(filename)

Resolve a filename relative to the cwd.

FAQs

Package last updated on 25 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts