UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

8 lines 250 B
import locale from "./locale.js"; export default function setLocale(custom) { Object.keys(custom).forEach(function (type) { Object.keys(custom[type]).forEach(function (method) { locale[type][method] = custom[type][method]; }); }); }