UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

12 lines (7 loc) 221 B
import { promise as queueAsPromised } from './queue.js' /* eslint-disable */ const queue = queueAsPromised(worker, 1) console.log('the result is', await queue.push(42)) async function worker (arg) { return 42 * 2 }