go integration and wikipedia
This commit is contained in:
parent
47a252e339
commit
ee90335b92
7828 changed files with 1307913 additions and 20807 deletions
23
frontend/node_modules/date-fns/millisecondsToMinutes.d.mts
generated
vendored
Normal file
23
frontend/node_modules/date-fns/millisecondsToMinutes.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
* @name millisecondsToMinutes
|
||||
* @category Conversion Helpers
|
||||
* @summary Convert milliseconds to minutes.
|
||||
*
|
||||
* @description
|
||||
* Convert a number of milliseconds to a full number of minutes.
|
||||
*
|
||||
* @param milliseconds - The number of milliseconds to be converted
|
||||
*
|
||||
* @returns The number of milliseconds converted in minutes
|
||||
*
|
||||
* @example
|
||||
* // Convert 60000 milliseconds to minutes:
|
||||
* const result = millisecondsToMinutes(60000)
|
||||
* //=> 1
|
||||
*
|
||||
* @example
|
||||
* // It uses floor rounding:
|
||||
* const result = millisecondsToMinutes(119999)
|
||||
* //=> 1
|
||||
*/
|
||||
export declare function millisecondsToMinutes(milliseconds: number): number;
|
||||
Loading…
Add table
Add a link
Reference in a new issue