UNPKG

json-autotranslate

Version:

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

11 lines (10 loc) 325 B
"use strict"; exports.__esModule = true; exports.matchI18Next = void 0; exports.matchI18Next = function (input, replacer) { var matches = input.match(/(\{\{.+?\}\}|\$t\(.+?\)|\$\{.+?\})/g); return (matches || []).map(function (match, index) { return ({ from: match, to: replacer(index) }); }); };