valid-filename

Check if a string is a valid filename

Usage no npm install needed!

<script type="module">
  import validFilename from 'https://cdn.skypack.dev/valid-filename';
</script>

README

valid-filename

Check if a string is a valid filename

Install

$ npm install valid-filename

Usage

import isValidFilename from 'valid-filename';

isValidFilename('foo/bar');
//=> false

isValidFilename('foo-bar');
//=> true

API

isValidFilename(input)

Returns a boolean of whether input is a valid filename.

input

Type: string

The string to check.

Related

  • filenamify - Convert a string to a valid safe filename