(value, start)
| 18 | * @returns {Readable<T>} |
| 19 | */ |
| 20 | export function readable(value, start) { |
| 21 | return { |
| 22 | subscribe: writable(value, start).subscribe |
| 23 | }; |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Create a `Writable` store that allows both updating and reading by subscription. |