aureooms/js-logic

View on GitHub
js/src/iff.js

Summary

Maintainability
A
0 mins
Test Coverage

var iff = function ( cnd , thn , els ) {

    return cnd( thn , els )( ) ;

} ;

exports.iff = iff ;