UNPKG

unified-query

Version:

Composable search input with autocompletion and a rich query-language parser for the Unified Data System

5 lines (4 loc) 172 B
// src/parser/keywords/util.ts export const unescapeAt = (str) => str .replace(/\\\\/g, '\\') // double back-slash first .replace(/\\@/g, '@'); // then escaped '@'