Skip to content

Commit 35c1bcb

Browse files
committed
don't use the locale
1 parent 3481857 commit 35c1bcb

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/tests/runtime-runes/samples/inline-expressions

1 file changed

+1
-1
lines changed

packages/svelte/tests/runtime-runes/samples/inline-expressions/main.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p>Without text expression: 7.36</p>
22
<p>With text expression: {7.36}</p>
3-
<p>With text expression and function call: {(7.36).toLocaleString()}</p>
3+
<p>With text expression and function call: {(7.36).toString()}</p>
44
<p>With text expression and property access: {"test".length}</p>
55
<h1>Hello {('name').toUpperCase().toLowerCase()}!</h1>
66
<p>{"test".length}</p>

0 commit comments

Comments
 (0)