UNPKG

scrivito

Version:

Scrivito is a professional, yet easy to use SaaS Enterprise Content Management Service, built for digital agencies and medium to large businesses. It is completely maintenance-free, cost-effective, and has unprecedented performance and security.

8 lines (6 loc) 231 B
export type DataId = string; export function isValidDataId(id: unknown): id is DataId { return ( typeof id === 'string' && !id.includes('^') && /^[\x21-\x7D]+$/.test(id) // all printable ASCII characters except tilde ); }