aureooms/js-bit

View on GitHub
js/src/word/wset.js

Summary

Maintainability
A
0 mins
Test Coverage

var wset = function ( b , i ) {
    return b | ( 1 << i ) ;
} ;

exports.wset = wset ;