regex-basename-windows

Regular expression to capture the last part of a Windows path.

Usage no npm install needed!

<script type="module">
  import regexBasenameWindows from 'https://cdn.skypack.dev/regex-basename-windows';
</script>

README

Basename

NPM version Build Status Coverage Status Dependencies

Regular expression to capture the last part of a Windows path.

Installation

$ npm install regex-basename-windows

Usage

var re = require( 'regex-basename-windows' );

re

Regular expression to capture the last part of a Windows path.

var base = re.exec( 'foo\\bar\\index.js' )[ 1 ];
// returns 'index.js'

Examples

var re = require( 'regex-basename-windows' );

var base;

base = re.exec( 'index.js' )[ 1 ];
console.log( base );
// returns 'index.js'

base = re.exec( 'C:\\foo\\bar\\home.html' )[ 1 ];
console.log( base );
// returns 'home.html'

base = re.exec( 'foo\\file.pdf' )[ 1 ];
console.log( base );
// returns 'file.pdf'

base = re.exec( 'beep\\boop.' )[ 1 ];
console.log( base );
// returns 'boop.'

base = re.exec( '' )[ 1 ];
console.log( base );
// returns ''

base = re.exec( '\\foo\\bar\\file' )[ 1 ];
console.log( base );
// returns 'file'

base = re.exec( 'C:\\foo\\bar\\.gitignore' )[ 1 ];
console.log( base );
// returns '.gitignore'

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.

Copyright

Copyright © 2015. Athan Reines.