join-path

Join urls or system paths, even with undefined values.

Usage no npm install needed!

<script type="module">
  import joinPath from 'https://cdn.skypack.dev/join-path';
</script>

README

join-path

Join urls or system paths, even with undefined values.

Install

npm install join-path --save

Usage

var join = require('join-path');

// OUTPUTS: some/path/for/testing
join('some', 'path', '/for/', undefined, '/testing'); 

// OUTPUTS: http://test.com/aboutus/projects
join('http://test.com', '/aboutus', 'projects');

Run Tests

npm install
npm test