Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 3x 3x 3x 3x 3x 3x 3x | /* This file is generated by scripts/process-messages/index.js. Do not edit! */ import { DEV } from 'esm-env'; /** * `%name%` is not a store with a `subscribe` method * @param {string} name * @returns {never} */ export function store_invalid_shape(name) { if (DEV) { const error = new Error(`${"store_invalid_shape"}\n${`\`${name}\` is not a store with a \`subscribe\` method`}`); error.name = 'Svelte error'; throw error; } else { // TODO print a link to the documentation throw new Error("store_invalid_shape"); } } |