11 lines
418 B
JavaScript
11 lines
418 B
JavaScript
/** gerar o texto de busca removendo caracteres especies e caixa alta */
|
|
export const texto_busca = (...texto) => texto
|
|
.map((txt) => txt === null || txt === undefined
|
|
? ""
|
|
: String(txt)
|
|
.normalize("NFD")
|
|
// biome-ignore lint/suspicious/noMisleadingCharacterClass: <explanation>
|
|
.replace(/[\u0300-\u036f]/g, "")
|
|
.replace(/\s+/g, " ")
|
|
.toLowerCase())
|
|
.join(" ");
|