Every line of 'firestore timestamp to date' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
25 static fromDate(date) { 26 if (!isDate(date)) { 27 throw new Error( 28 "firebase.firestore.Timestamp.fromDate(*) 'date' expected a valid Date object.", 29 ); 30 } 31 32 return FirestoreTimestamp.fromMillis(date.getTime()); 33 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
3 export function timestampToDate(timestamp?: pb.google.protobuf.ITimestamp) { 4 let millis: number 5 if (!timestamp) { 6 millis = 0 7 } else { 8 millis = timestamp.seconds as number * 1e3 + timestamp.nanos / 1e6 9 } 10 return new Date(millis) 11 }
112 function firestoreTimestampFunction(datasetId: string): any { 113 const definition: string = firestoreTimestampDefinition(datasetId); 114 return { 115 query: definition, 116 useLegacySql: false, 117 }; 118 }
182 static date(timestamp) { 183 return new Date(timestamp * 60 * 1000); 184 }
95 export function solrTimestamp(date) { 96 return moment(date).format('x'); 97 }