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) • 552 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createHex = void 0;
var _baseUtils = require("./baseUtils");
/**
* Format a number as hexadecimal.
*
* Syntax:
*
* math.hex(value)
*
* Examples:
*
* //the following outputs "0xF0"
* math.hex(240)
*
* See also:
*
* oct
* bin
*
* @param {number} value Value to be stringified
* @return {string} The formatted value
*/
var createHex = (0, _baseUtils.createBaseFormatterFactory)('hex', 16);
exports.createHex = createHex;