wongjiahau/ttap-web

View on GitHub
src/ts/util/decToBin.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function DecToBin(digit: number, outputBinaryLength: number) {
  let out = "";
  while (outputBinaryLength--) {
    out += (digit >> outputBinaryLength) & 1;
  }
  return out;
}