Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Muqriz 48f16bfc3e initail first vor 4 Monaten
..
filenamify-path.d.ts initail first vor 4 Monaten
filenamify-path.js initail first vor 4 Monaten
filenamify.d.ts initail first vor 4 Monaten
filenamify.js initail first vor 4 Monaten
index.d.ts initail first vor 4 Monaten
index.js initail first vor 4 Monaten
license initail first vor 4 Monaten
package.json initail first vor 4 Monaten
readme.md initail first vor 4 Monaten

readme.md

filenamify

Convert a string to a valid safe filename

On Unix-like systems, / is reserved. On Windows, <>:"/\|?* along with trailing periods are reserved.

Install

$ npm install filenamify

Usage

const filenamify = require('filenamify');

filenamify('<foo/bar>');
//=> 'foo!bar'

filenamify('foo:"bar"', {replacement: '🐴'});
//=> 'foo🐴bar'

API

filenamify(string, options?)

Convert a string to a valid filename.

filenamify.path(path, options?)

Convert the filename in a path a valid filename and return the augmented path.

options

Type: object

replacement

Type: string\ Default: '!'

String to use as replacement for reserved filename characters.

Cannot contain: < > : " / \ | ? *

maxLength

Type: number\ Default: 100

Truncate the filename to the given length.

Systems generally allow up to 255 characters, but we default to 100 for usability reasons.

Browser-only import

You can also import filenamify/browser, which only imports filenamify and not filenamify.path, which relies on path being available or polyfilled. Importing filenamify this way is therefore useful when it is shipped using webpack or similar tools, and if filenamify.path is not needed.

const filenamify = require('filenamify/browser');

filenamify('<foo/bar>');
//=> 'foo!bar'

Related