mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +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 })
|
|
}
|
|
}
|