mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
16 lines
261 B
JavaScript
16 lines
261 B
JavaScript
module.exports = {
|
|
'name': 'to',
|
|
'category': 'Units',
|
|
'syntax': [
|
|
'x to unit',
|
|
'to(x, unit)'
|
|
],
|
|
'description': 'Change the unit of a value.',
|
|
'examples': [
|
|
'5 inch to cm',
|
|
'3.2kg to g',
|
|
'16 bytes in bits'
|
|
],
|
|
'seealso': []
|
|
};
|