UNPKG

cesr

Version:

[![NPM Version](https://img.shields.io/npm/v/cesr.svg?style=flat)](https://www.npmjs.com/package/cesr) [![NPM License](https://img.shields.io/npm/l/cesr.svg?style=flat)](https://github.com/lenkan/cesr-js/blob/main/LICENSE)

10 lines (9 loc) 182 B
/** * Shifts a number left * * @param num Number to shift left * @param bits How many bits to shift */ export function lshift(num, bits) { return num * Math.pow(2, bits); }