You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
258 B
24 lines
258 B
4 weeks ago
|
# tempo
|
||
|
|
||
|
```js
|
||
|
// usage
|
||
|
chance.tempo(); //default between 40 to 320
|
||
|
chance.tempo({ min: 60, max: 120 });
|
||
|
```
|
||
|
|
||
|
Return a tempo. 🎵
|
||
|
|
||
|
```js
|
||
|
chance.tempo();
|
||
|
=> 58
|
||
|
|
||
|
chance.tempo();
|
||
|
=> 281
|
||
|
|
||
|
chance.tempo({ max: 80 });
|
||
|
=> 45
|
||
|
|
||
|
chance.tempo({ min: 120 });
|
||
|
=> 172
|
||
|
|
||
|
```
|