mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-10 03:50:50 -06:00
19 lines
488 B
TypeScript
19 lines
488 B
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
import { detect } from 'tinyld';
|
||
|
import * as mfm from 'mfm-js';
|
||
|
|
||
|
export default function detectLanguage(text: string): string {
|
||
|
const nodes = mfm.parse(text);
|
||
|
const filtered = mfm.extract(nodes, (node) => {
|
||
|
return node.type === 'text' || node.type === 'quote';
|
||
|
});
|
||
|
const purified = mfm.toString(filtered);
|
||
|
|
||
|
if (detect(purified) === '') return 'en';
|
||
|
return detect(purified);
|
||
|
}
|