Installations
npm install @stdlib/regexp-filename-posix
Developer Guide
Typescript
Yes
Module System
CommonJS
Min. Node Version
>=0.10.0
Node Version
16.20.2
NPM Version
8.19.4
Score
70.8
Supply Chain
95.9
Quality
82.4
Maintenance
100
Vulnerability
88
License
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Developer
Download Statistics
Total Downloads
6,695
Last Day
8
Last Week
47
Last Month
157
Last Year
1,101
GitHub Statistics
1 Stars
72 Commits
3 Watching
5 Branches
11 Contributors
Bundle Size
6.94 kB
Minified
2.41 kB
Minified + Gzipped
Sponsor this package
Package Meta Information
Latest Version
0.2.1
Package Id
@stdlib/regexp-filename-posix@0.2.1
Unpacked Size
32.79 kB
Size
8.65 kB
File Count
12
NPM Version
8.19.4
Node Version
16.20.2
Publised On
21 Feb 2024
Total Downloads
Cumulative downloads
Total Downloads
6,695
Last day
14.3%
8
Compared to previous day
Last week
-4.1%
47
Compared to previous week
Last month
153.2%
157
Compared to previous month
Last year
-45.3%
1,101
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
reFilenamePosix
Regular expression to split a POSIX filename.
Installation
1npm install @stdlib/regexp-filename-posix
Usage
1var reFilenamePosix = require( '@stdlib/regexp-filename-posix' );
reFilenamePosix()
Returns a regular expression to split a POSIX filename.
1var RE_FILENAME_POSIX = reFilenamePosix(); 2var parts = RE_FILENAME_POSIX.exec( '/foo/bar/index.js' ).slice(); 3/* returns 4 [ 5 '/foo/bar/index.js', // input value 6 '/', // root 7 'foo/bar/', // dirname 8 'index.js', // basename 9 '.js' // extname 10 ] 11*/
reFilenamePosix.REGEXP
Regular expression to split a POSIX filename.
1var parts = reFilenamePosix.REGEXP.exec( '/foo/bar/index.js' ).slice(); 2/* returns 3 [ 4 '/foo/bar/index.js', // input value 5 '/', // root 6 'foo/bar/', // dirname 7 'index.js', // basename 8 '.js' // extname 9 ] 10*/
Notes
-
When executed against dotfile filenames (e.g.,
.gitignore
), the regular expression does not capture the basename as a filename extension.1var parts = reFilenamePosix.REGEXP.exec( '.bash_profile' ).slice(); 2/* returns 3 [ 4 '.bash_profile', 5 '', 6 '', 7 '.bash_profile', 8 '' 9 ] 10*/ 11 12parts = reFilenamePosix.REGEXP.exec( '.travis.yml' ).slice(); 13/* returns 14 [ 15 '.travis.yml', 16 '', 17 '', 18 '.travis.yml', 19 '.yml' 20 ] 21*/
Examples
1var reFilenamePosix = require( '@stdlib/regexp-filename-posix' ); 2 3var RE_FILENAME_POSIX = reFilenamePosix(); 4var parts = RE_FILENAME_POSIX.exec( 'index.js' ).slice(); 5/* returns 6 [ 7 'index.js', 8 '', 9 '', 10 'index.js', 11 '.js' 12 ] 13*/ 14 15parts = RE_FILENAME_POSIX.exec( '/foo/bar/home.html' ).slice(); 16/* returns 17 [ 18 '/foo/bar/home.html', 19 '/', 20 'foo/bar/', 21 'home.html', 22 '.html' 23 ] 24*/ 25 26parts = RE_FILENAME_POSIX.exec( 'foo/file.pdf' ).slice(); 27/* returns 28 [ 29 'foo/file.pdf', 30 '', 31 'foo/', 32 'file.pdf', 33 '.pdf' 34 ] 35*/ 36 37parts = RE_FILENAME_POSIX.exec( 'beep/boop.' ).slice(); 38/* returns 39 [ 40 'beep/boop.', 41 '', 42 'beep/', 43 'boop.', 44 '.' 45 ] 46*/ 47 48parts = RE_FILENAME_POSIX.exec( '' ).slice(); 49/* returns 50 [ 51 '', 52 '', 53 '', 54 '', 55 '' 56 ] 57*/ 58 59parts = RE_FILENAME_POSIX.exec( '/foo/bar/file' ).slice(); 60/* returns 61 [ 62 '/foo/bar/file', 63 '/', 64 'foo/bar/', 65 'file', 66 '' 67 ] 68*/ 69 70parts = RE_FILENAME_POSIX.exec( '/foo/bar/.gitignore' ).slice(); 71/* returns 72 [ 73 '/foo/bar/.gitignore', 74 '/', 75 'foo/bar/', 76 '.gitignore', 77 '' 78 ] 79*/
See Also
@stdlib/regexp-filename
: return a regular expression to split a filename.@stdlib/regexp-filename-windows
: return a regular expression to split a Windows filename.
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-2024. The Stdlib Authors.
![Empty State](/_next/static/media/empty.e5fae2e5.png)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0
Reason
security policy file detected
Details
- Info: security policy file detected: SECURITY.md:1
- Info: Found linked content: SECURITY.md:1
- Warn: One or no descriptive hints of disclosure, vulnerability, and/or timelines in security policy
- Info: Found text in security policy: SECURITY.md:1
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/productionize.yml:85: update your workflow using https://app.stepsecurity.io/secureworkflow/stdlib-js/regexp-filename-posix/productionize.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/productionize.yml:275: update your workflow using https://app.stepsecurity.io/secureworkflow/stdlib-js/regexp-filename-posix/productionize.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/productionize.yml:449: update your workflow using https://app.stepsecurity.io/secureworkflow/stdlib-js/regexp-filename-posix/productionize.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/productionize.yml:457: update your workflow using https://app.stepsecurity.io/secureworkflow/stdlib-js/regexp-filename-posix/productionize.yml/main?enable=pin
- Warn: third-party GitHubAction not pinned by hash: .github/workflows/productionize.yml:623: update your workflow using https://app.stepsecurity.io/secureworkflow/stdlib-js/regexp-filename-posix/productionize.yml/main?enable=pin
- Warn: npmCommand not pinned by hash: .github/workflows/benchmark.yml:58
- Warn: npmCommand not pinned by hash: .github/workflows/benchmark.yml:58
- Warn: npmCommand not pinned by hash: .github/workflows/benchmark.yml:58
- Warn: npmCommand not pinned by hash: .github/workflows/examples.yml:58
- Warn: npmCommand not pinned by hash: .github/workflows/examples.yml:58
- Warn: npmCommand not pinned by hash: .github/workflows/examples.yml:58
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:157
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:157
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:157
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:165
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:269
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:269
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:269
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:436
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:436
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:436
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:617
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:617
- Warn: npmCommand not pinned by hash: .github/workflows/productionize.yml:617
- Warn: npmCommand not pinned by hash: .github/workflows/test.yml:76
- Warn: npmCommand not pinned by hash: .github/workflows/test.yml:76
- Warn: npmCommand not pinned by hash: .github/workflows/test.yml:76
- Warn: npmCommand not pinned by hash: .github/workflows/test.yml:83
- Warn: npmCommand not pinned by hash: .github/workflows/test_bundles.yml:72
- Warn: npmCommand not pinned by hash: .github/workflows/test_coverage.yml:67
- Warn: npmCommand not pinned by hash: .github/workflows/test_coverage.yml:67
- Warn: npmCommand not pinned by hash: .github/workflows/test_coverage.yml:67
- Warn: npmCommand not pinned by hash: .github/workflows/test_coverage.yml:74
- Warn: npmCommand not pinned by hash: .github/workflows/test_install.yml:75
- Warn: npmCommand not pinned by hash: .github/workflows/test_install.yml:75
- Warn: npmCommand not pinned by hash: .github/workflows/test_install.yml:75
- Warn: npmCommand not pinned by hash: .github/workflows/test_published_package.yml:93
- Info: 33 out of 33 GitHub-owned GitHubAction dependencies pinned
- Info: 19 out of 24 third-party GitHubAction dependencies pinned
- Info: 0 out of 32 npmCommand dependencies pinned
Reason
2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'main'
Reason
detected GitHub workflow tokens with excessive permissions
Details
- Warn: no topLevel permission defined: .github/workflows/benchmark.yml:1
- Warn: no topLevel permission defined: .github/workflows/cancel.yml:1
- Warn: no topLevel permission defined: .github/workflows/close_pull_requests.yml:1
- Warn: no topLevel permission defined: .github/workflows/examples.yml:1
- Warn: no topLevel permission defined: .github/workflows/npm_downloads.yml:1
- Warn: no topLevel permission defined: .github/workflows/productionize.yml:1
- Warn: no topLevel permission defined: .github/workflows/publish.yml:1
- Warn: no topLevel permission defined: .github/workflows/test.yml:1
- Warn: no topLevel permission defined: .github/workflows/test_bundles.yml:1
- Warn: no topLevel permission defined: .github/workflows/test_coverage.yml:1
- Warn: no topLevel permission defined: .github/workflows/test_install.yml:1
- Warn: no topLevel permission defined: .github/workflows/test_published_package.yml:1
- Info: no jobLevel write permissions found
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
Score
4.3
/10
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreOther packages similar to @stdlib/regexp-filename-posix
@stdlib/regexp-extname-posix
Return a regular expression to capture a POSIX filename extension.
@stdlib/regexp-dirname-posix
Return a regular expression to capture a POSIX path dirname.
@stdlib/regexp-basename-posix
Return a regular expression to capture the last part of a POSIX path.
@stdlib/regexp-filename
Return a regular expression to split a filename.