UNPKG

@cch137/format-utils

Version:

A collection of utility modules for formatting and processing data

4 lines (3 loc) 129 B
export function toSafeFilename(value, replaceValue = "_") { return value.replace(/[\/:*?"<>|\\\x00-\x1F]/g, replaceValue); }