UNPKG

json-autotranslate

Version:

Translate a folder of JSON files containing translations into multiple languages.

11 lines (10 loc) 295 B
"use strict"; exports.__esModule = true; exports.matchSprintf = void 0; exports.matchSprintf = function (input, replacer) { var matches = input.match(/(%.)/g); return (matches || []).map(function (match, index) { return ({ from: match, to: replacer(index) }); }); };