mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-13 16:34:39 +00:00
9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
import find from 'lodash/find'
|
|
import locales from '../../webapp/locales'
|
|
|
|
export default {
|
|
getLangByName(name) {
|
|
return find(locales, { name })
|
|
}
|
|
}
|