Introduction

🤵 description
🔧 installation
npm install conductor✨ examples
use asynchronous functions seamlessly
import { map } from 'conductor'
const fetchCharacter = id => fetch(`https://swapi.co/api/people/${id}`).then(res => res.json())
const character_ids = [1, 2, 3]
await map(fetchCharacter, character_ids) // [{id: 1, name: 'Luke'}, ...]compose things
functional by design
📖 documentation
🗿 influences
Last updated