You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/packages/svelte/tests/snapshot/samples/purity/index.svelte

13 lines
204 B

<script>
let min = 0;
let max = 100;
let number = 50;
let value = 'hello';
</script>
<p>{Math.max(min, Math.min(max, number))}</p>
<p>{location.href}</p>
<Child prop={encodeURIComponent(value)} />