is-valid-path-with-extension

1.0.0 • Public • Published

is-valid-path-with-extension

Returns true if a file path has valid characters and file extension matches.

Based on is-valid-path. Thanks jonschlinkert.

Here is a way to tell if string is a valid path of a particular file type. It's essentially is-valid-path with a second argument for a regex pattern. 🙂

import { default as isValid } from 'is-valid-path-with-extension'
 
isValid('img.jpg', /\.jpg/) // true
isValid('img.jpg', /\.png/) // null
isValid('img.jpg', /\.jpg|\.jpeg|\.png|\.svg/) // true
isValid('img.jp', /\.jpg|\.jpeg|\.png|\.svg/) // null

Readme

Keywords

none

Package Sidebar

Install

npm i is-valid-path-with-extension

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • bentatum