mirror of
https://github.com/strapi/strapi.git
synced 2025-07-30 04:20:34 +00:00
11 lines
151 B
JavaScript
11 lines
151 B
JavaScript
'use strict';
|
|
|
|
const formatLocale = (locale) => {
|
|
return {
|
|
...locale,
|
|
name: locale.name || null,
|
|
};
|
|
};
|
|
|
|
module.exports = { formatLocale };
|