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
23 lines (22 loc) • 423 B
JavaScript
import { createBaseFormatterFactory } from './baseUtils.js';
/**
* 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
*/
export var createHex = createBaseFormatterFactory('hex', 16);