mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
import find from 'lodash/find'
|
|
|
|
const helpers = {
|
|
locales: require('../../webapp/locales'),
|
|
getLangByName: name => {
|
|
return find(helpers.locales, { name })
|
|
}
|
|
}
|
|
|
|
export default helpers
|