switch-exp

1.0.0 • Public • Published

Switch expressions

Switch as an expression in Javascript, inspired by @FGRibreau's https://github.com/FGRibreau/if-exp.

Install

npm install switch-exp

Usage

import _switch from 'switch-exp';
 
const a = _switch( thing )
    .case( condition1 )
        .then( 'value1' )
    .case( condition2 )
        .then( 'value2' )
    .default( 'defaultValue' );

Dependents (0)

Package Sidebar

Install

npm i switch-exp

Weekly Downloads

3

Version

1.0.0

License

MIT

Last publish

Collaborators

  • nicolasbrugneaux