1.0.1 • Published 2 years ago

@gustavofsantos/defn v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

defn

Utilitary function to define functions with multiple implementations.

Getting Started

Install this package using your favorite package manager:

$ npm i @gustavofsantos/defn

Then define your first variadic function.

const greet = defn(
  () => "Hello you",
  (name) => `Hello, ${name}`
)

greet() // Hello you
greet('Gustavo') // Hello, Gustavo
1.0.1

2 years ago

1.0.0

2 years ago