6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
|
|
import { EXT_TO_LANG } from "./constants"
|
||
|
|
|
||
|
|
export function getLanguageId(ext: string): string {
|
||
|
|
return EXT_TO_LANG[ext] || "plaintext"
|
||
|
|
}
|