ext-regex:匹配文件扩展名的正则表达式

时间:2024-07-21 06:01:47
【文件属性】:

文件名称:ext-regex:匹配文件扩展名的正则表达式

文件大小:5KB

文件格式:ZIP

更新时间:2024-07-21 06:01:47

JavaScript

ext-regex 用于匹配文件扩展名的正则表达式。 匹配单个和/或多个文件扩展名,例如.min.js 。 使用安装 npm i ext-regex --save 用法 var extRegex = require ( 'ext-regex' ) ; 'a/b/c.min.js' . match ( extRegex ( ) ) ; //=> ['.min.js', '.js', 'js']; 'a/b/c/.gitignore' . match ( extRegex ( ) ) ; //=> ['.gitignore', '.gitignore', 'gitignore'] 'a/b/c' . match ( extRegex ( ) ) ; //=> null 'a/b/c.js' . test ( extRegex ( ) ) ; //=> true 运行测试 安装开发依赖:


【文件预览】:
ext-regex-master
----index.js(230B)
----test.js(2KB)
----package.json(922B)
----LICENSE(1KB)
----.npmignore(149B)
----.gitignore(120B)
----.verb.md(829B)
----README.md(1KB)
----.jshintrc(280B)
----.editorconfig(295B)
----.gitattributes(237B)

网友评论