mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
import { sprintf } from 'sprintf-js';
|
|
|
|
// This function does nothing for now, but later will return
|
|
// a different string depending on the language.
|
|
function _(s, ...args) {
|
|
return sprintf(s, ...args);
|
|
}
|
|
|
|
export { _ }; |