mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
17 lines
317 B
JavaScript
17 lines
317 B
JavaScript
module.exports = {
|
|
'name': 'format',
|
|
'category': 'Utils',
|
|
'syntax': [
|
|
'format(value)',
|
|
'format(value, precision)'
|
|
],
|
|
'description': 'Format a value of any type as string.',
|
|
'examples': [
|
|
'format(2.3)',
|
|
'format(3 - 4i)',
|
|
'format([])',
|
|
'format(pi, 3)'
|
|
],
|
|
'seealso': ['print']
|
|
};
|