UNPKG

json-autotranslate

Version:

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

12 lines (11 loc) 345 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.matchSprintf = void 0; const matchSprintf = (input, replacer) => { const matches = input.match(/(%.)/g); return (matches || []).map((match, index) => ({ from: match, to: replacer(index), })); }; exports.matchSprintf = matchSprintf;