Package Exports
- @stdlib/regexp-extname
- @stdlib/regexp-extname/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/regexp-extname) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Filename Extension
Regular expression to capture a filename extension.
Installation
npm install @stdlib/regexp-extnameUsage
var reExtname = require( '@stdlib/regexp-extname' );reExtname( [platform] )
Returns a regular expression to capture a filename extension.
var RE = reExtname();
// returns <RegExp>
RE = reExtname( 'posix' );
// returns <RegExp>
var ext = RE.exec( '/foo/bar/index.js' )[ 1 ];
// returns '.js'
RE = reExtname( 'win32' );
// returns <RegExp>
ext = RE.exec( 'C:\\foo\\bar\\index.js' )[ 1 ];
// returns '.js'reExtname.REGEXP
Regular expression to capture a filename extension.
var bool = ( reExtname.REGEXP.toString() === reExtname().toString() );
// returns truereExtname.REGEXP_POSIX
Regular expression to capture a POSIX filename extension.
var ext = reExtname.REGEXP_POSIX.exec( '/foo/bar/index.js' )[ 1 ];
// returns '.js'reExtname.REGEXP_WIN32
Regular expression to capture a Windows filename extension.
var ext = reExtname.REGEXP_WIN32.exec( 'C:\\foo\\bar\\index.js' )[ 1 ];
// returns '.js'Notes
- The as
REGEXPexported regular expression is platform-dependent. If the current process is running on Windows,REGEXP === REGEXP_WIN32; otherwise,REGEXP === REGEXP_POSIX.
Examples
var reExtname = require( '@stdlib/regexp-extname' );
var RE_EXTNAME = reExtname();
var ext;
// Assuming a POSIX platform...
ext = RE_EXTNAME.exec( '/foo/bar/index.js' )[ 1 ];
// returns '.js'
ext = reExtname.REGEXP_WIN32.exec( '/foo/bar/home.html' )[ 1 ];
// returns '.html'
ext = reExtname.REGEXP_WIN32.exec( 'C:\\foo\\bar\\home.html' )[ 1 ];
// returns '.html'Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2022. The Stdlib Authors.