MCPcopy
hub / github.com/tensorflow/tfjs-examples / toTwoDigitString

Function toTwoDigitString

date-conversion-attention/date_format.js:73–75  ·  view source on GitHub ↗
(num)

Source from the content-addressed store, hash-verified

71}
72
73function toTwoDigitString(num) {
74 return num < 10 ? `0${num}` : `${num}`;
75}
76
77/** Date format such as 01202019. */
78export function dateTupleToDDMMMYYYY(dateTuple) {

Calls

no outgoing calls

Tested by

no test coverage detected