6 lines
93 B
JavaScript
6 lines
93 B
JavaScript
export function Locale(config) {
|
|
if (config != null) {
|
|
this.set(config);
|
|
}
|
|
}
|