UNPKG

@platformos/pos-cli

Version:
24 lines (21 loc) 281 B
const validCharacters = new RegExp([ '[^', '\\w', '\\s', '\\-', '_', '~', '@', '%', '\\+', '\\.', '\\/', '\\\\', '\\(', '\\)', "'", '&', ']' ].join('')); const isValidFilePath = str => !validCharacters.test(str); export default isValidFilePath;