mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
31 lines (28 loc) • 544 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createBin = void 0;
var _baseUtils = require("./baseUtils");
/**
* Format a number as binary.
*
* Syntax:
*
* math.bin(value)
*
* Examples:
*
* //the following outputs "0b10"
* math.bin(2)
*
* See also:
*
* oct
* hex
*
* @param {number} value Value to be stringified
* @return {string} The formatted value
*/
var createBin = (0, _baseUtils.createBaseFormatterFactory)('bin', 2);
exports.createBin = createBin;