1.0.0 • Published 8 years ago

dfltv v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

dfltv

default value wrapper

if value is not defined or it matches with a pattern then it subtitutes with default value else passes as is

using

import Dflt from 'dflt'
const dflt = Dflt('oh fuck', 'oh god')
//                 ^ pattern  ^ default
const bazquxval = fetchBazQux(/*...*/)
foobar(dflt(bazquxval)) // if bazquxval equals 'oh fuck' or not bazquxval: 'oh god' else bazquxval
// ...