We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6d41b commit c1e5eeaCopy full SHA for c1e5eea
packages/svelte/src/internal/client/render.js
@@ -3051,25 +3051,6 @@ export function unmount(component) {
3051
fn?.();
3052
}
3053
3054
-/**
3055
- * @param {Record<string, unknown>} props
3056
- * @returns {void}
3057
- */
3058
-export function access_props(props) {
3059
- for (const prop in props) {
3060
- deep_read(props[prop]);
3061
- }
3062
-}
3063
-
3064
3065
- * @param {any[]} values
3066
3067
-export function deep_read_all(...values) {
3068
- for (const value of values) {
3069
- deep_read(value);
3070
3071
3072
3073
/**
3074
* @param {Record<string, any>} props
3075
* @returns {Record<string, any>}
0 commit comments