Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

119
Vistas
Pass argument to readable store in Svelte

is there someway to pass an argument to readable store in svelte ? I have the next code:

export const worker = readable(
    [], async (set) => {

        const response = await fetchAPI()
        set(response)
        
        const interval = setInterval(async () => {
            const response = await fetchAPI()
            set(response)
        }, 10000)
})

I want pass an argumeto to that readable function with the response of the api to set the result of it via set().

Thanks

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You can access any variables that are in scope, so you can "pass" a variable from outside the readable's function.

export function worker(arg) {
   return readable([], async set => {
      const response = await fetchAPI(arg); // arg is in scope here
      // ...
   });
}
about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda