UNPKG

js-awe

Version:

Awesome js utils including - plan: An Asynchronous control flow with a functional taste - Chrono: record and visualize timelines in the console

11 lines (6 loc) 252 B
import { oneIn } from "js-awe" const sumOfThree = oneIn(3).call((a:number, b:number, c:number)=>{return a + b + c}) console.log(sumOfThree(1, 2, 3)) console.log(sumOfThree(1, 2, 3)) console.log(sumOfThree(1, 2, 3)) console.log(sumOfThree(1, 2, 3))