go integration and wikipedia
This commit is contained in:
parent
47a252e339
commit
ee90335b92
7828 changed files with 1307913 additions and 20807 deletions
25
frontend/node_modules/date-fns/fromUnixTime.mjs
generated
vendored
Normal file
25
frontend/node_modules/date-fns/fromUnixTime.mjs
generated
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { toDate } from "./toDate.mjs";
|
||||
|
||||
/**
|
||||
* @name fromUnixTime
|
||||
* @category Timestamp Helpers
|
||||
* @summary Create a date from a Unix timestamp.
|
||||
*
|
||||
* @description
|
||||
* Create a date from a Unix timestamp (in seconds). Decimal values will be discarded.
|
||||
*
|
||||
* @param unixTime - The given Unix timestamp (in seconds)
|
||||
*
|
||||
* @returns The date
|
||||
*
|
||||
* @example
|
||||
* // Create the date 29 February 2012 11:45:05:
|
||||
* const result = fromUnixTime(1330515905)
|
||||
* //=> Wed Feb 29 2012 11:45:05
|
||||
*/
|
||||
export function fromUnixTime(unixTime) {
|
||||
return toDate(unixTime * 1000);
|
||||
}
|
||||
|
||||
// Fallback for modularized imports:
|
||||
export default fromUnixTime;
|
||||
Loading…
Add table
Add a link
Reference in a new issue