mirror of
https://github.com/outline/outline.git
synced 2026-02-24 05:19:47 -06:00
5 lines
112 B
JavaScript
5 lines
112 B
JavaScript
// @flow
|
|
|
|
export const validateIndexCharacters = (index: string) =>
|
|
new RegExp("^[\x20-\x7E]+$").test(index);
|