Blame view

天文台pc/tianwentai-ui/node_modules/date-fns/fromUnixTime.js 613 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  "use strict";
  exports.fromUnixTime = fromUnixTime;
  var _index = require("./toDate.js");
  
  /**
   * @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
   */
  function fromUnixTime(unixTime) {
    return (0, _index.toDate)(unixTime * 1000);
  }