Regular expression to capture the last part of a POSIX path.
$ npm install regex-basename-posix
var re = require( 'regex-basename-posix' );
Regular expression to capture the last part of a POSIX path.
var base = re.exec( 'foo/bar/index.js' )[ 1 ];
// returns 'index.js'
var re = require( 'regex-basename-posix' );
var base;
base = re.exec( 'index.js' )[ 1 ];
console.log( base );
// returns 'index.js'
base = re.exec( '/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.' )[ 1 ];
console.log( base );
// returns 'beep.'
base = re.exec( '' )[ 1 ];
console.log( base );
// returns ''
base = re.exec( '/foo/bar/file' )[ 1 ];
console.log( base );
// returns 'file'
base = re.exec( '/foo/bar/.gitignore' )[ 1 ];
console.log( base );
// returns '.gitignore'
To run the example code from the top-level application directory,
$ node ./examples/index.js
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.
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
Copyright © 2015. Athan Reines.