20 lines
304 B
TypeScript
20 lines
304 B
TypeScript
/**
|
|
* Search
|
|
*/
|
|
|
|
export type TextElementSearch = {
|
|
type: 'search'
|
|
content: string
|
|
query: string
|
|
};
|
|
|
|
export default function(text: string) {
|
|
const match = text.match(/^(.+?) (検索|Search)(\n|$)/i);
|
|
if (!match) return null;
|
|
return {
|
|
type: 'search',
|
|
content: match[0],
|
|
query: match[1]
|
|
};
|
|
}
|