Socket
Socket
Sign inDemoInstall

@cush/relative

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cush/relative

Fast relative path resolution


Version published
Weekly downloads
207K
decreased by-7.88%
Maintainers
1
Install size
8.83 kB
Created
Weekly downloads
 

Readme

Source

@cush/relative

npm Bundle size Code style: Prettier Donate

Ultra fast relative path resolver ⚡️

relative('a/b', './c')    // => 'a/c'
relative('a/b', '.')      // => 'a'
relative('a/b', '..')     // => ''
relative('a/b', '../..')  // => null

The first argument is known as "the module".

The second argument is known as "the relative".

The relative must begin with a period. Otherwise, null is returned.

The basename of the module is always ignored.

When the module is not absolute and the relative is pointing to the root directory, an empty string is returned.

When the module is not absolute and the relative is pointing outside the root directory, null is returned.

Keywords

FAQs

Last updated on 01 Apr 2021

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc