UNPKG

baconjs

Version:

A small functional reactive programming lib for JavaScript.

6 lines (5 loc) 150 B
import { Property } from "./observable"; /** Creates a constant property with value `x`. */ export default function constant<V>(x: V): Property<V>;