2021-10-17 18:26:00 +02:00
|
|
|
---
|
2022-10-01 22:20:43 +02:00
|
|
|
title: utils.units()
|
2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
The `utils.units()` function converts the units `value` you pass it into a
|
|
|
|
formatted string for the `format` you pass it.
|
|
|
|
|
|
|
|
## Signature
|
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
|
|
|
string utils.units(float value, string format = 'metric')
|
|
|
|
```
|
|
|
|
|
|
|
|
Format must be either `imperial` or `metric` (the default).
|
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
## Notes
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
A [part's `draft()` function](/reference/api/part/draft) receives a context-aware
|
|
|
|
`unit()` function that will call this function and pass it the units requested by the user.
|