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 5b60a0e commit 3c66771Copy full SHA for 3c66771
packages/svelte/package.json
@@ -122,7 +122,7 @@
122
"@rollup/plugin-terser": "^0.4.4",
123
"@rollup/plugin-virtual": "^3.0.2",
124
"@types/aria-query": "^5.0.4",
125
- "dts-buddy": "^0.4.7",
+ "dts-buddy": "^0.5.0",
126
"esbuild": "^0.19.11",
127
"knip": "^4.2.1",
128
"rollup": "^4.9.5",
packages/svelte/src/store/index.js
@@ -213,11 +213,9 @@ export function readonly(store) {
213
* @param {import('../store/public').Readable<T>} store
214
* @returns {T}
215
*/
216
-export function get_store_value(store) {
+export function get(store) {
217
let value;
218
subscribe_to_store(store, (_) => (value = _))();
219
// @ts-expect-error
220
return value;
221
}
222
-
223
-export { get_store_value as get };
0 commit comments