astro-ghostcms/.pnpm-store/v3/files/05/4d3b190018a329bc3973ce458b1...

10 lines
221 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/* eslint-disable no-control-regex */
export default function filenameReservedRegex() {
return /[<>:"/\\|?*\u0000-\u001F]/g;
}
export function windowsReservedNameRegex() {
return /^(con|prn|aux|nul|com\d|lpt\d)$/i;
}