We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f4a6c commit a4c5889Copy full SHA for a4c5889
src/localize.js
@@ -40,7 +40,7 @@ export function clear() {
40
41
const pluralRules = new Map();
42
export function get(key, context, args = []) {
43
- key = key.trim();
+ key = key.trim().replace(/\s+/g, " ");
44
context = context.trim();
45
46
const cacheKey = `${key} | ${context}`;
test/spec/localize.js
@@ -86,7 +86,7 @@ describe("localize:", () => {
86
"text only": { message: "haha" },
87
});
88
89
- expect(msg`text only`).toBe("haha");
+ expect(msg`text only`).toBe("haha");
90
expect(msg`text only`).toBe("haha");
91
expect(msg`text and ${123} ${321}`).toBe("123 i tekst");
92
expect(msg`plural ${0}`).toBe("0 inne");
0 commit comments