Skip to main content
Module

x/ramda/mod.ts>once

:ram: Practical functional Javascript
Latest
variable once
import { once } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Accepts a function fn and returns a function that guards invocation of fn such that fn can only ever be called once, no matter how many times the returned function is invoked. The first value calculated is returned in subsequent invocations.