UNPKG

247 BJavaScriptView Raw
1import locale from './locale';
2export default function setLocale(custom) {
3 Object.keys(custom).forEach(function (type) {
4 Object.keys(custom[type]).forEach(function (method) {
5 locale[type][method] = custom[type][method];
6 });
7 });
8}
\No newline at end of file