UNPKG
polyglot-cli
Version:
beta (2.3.0-beta.1)
latest (2.3.0)
2.3.0
2.3.0-beta.1
2.3.0-beta.0
2.2.1
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta.0
1.10.1
1.10.0
1.9.0
1.8.0
1.7.2
1.7.1
1.7.0
1.6.2
1.6.1
1.6.0
1.5.0
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
Infinum Polyglot CLI
bitbucket.org/infinum_hr/js-polyglot-cli
polyglot-cli
/
serializers
/
placeholders
/
harmony.js
5 lines
(4 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
= {
forLocal
:
(
translation
) =>
translation.
replace
(
/\#\{([^}]+)\}/g
,
(
_, key
) =>
`\${
${key}
}`
),
forRemote
:
(
translation
) =>
translation.
replace
(
/\$\{([^}]+)\}/g
,
(
_, key
) =>
`#{
${key}
}`
) };