@stackend/api
Version:
JS bindings to api.stackend.com
9 lines • 341 B
TypeScript
/**
* Split a search expression into parts, remove all characters that are not letters or digits.
*
* For example: "Wow! <Räksmörgås>" returns ["wow", "räksmörgås"]
* @param text
* @returns {null|[]}
*/
export declare function parseSearchString(text: string): Array<string> | null;
//# sourceMappingURL=parseSearchString.d.ts.map