MCPcopy Create free account
hub / github.com/tensorflow/tfjs-examples / integerToTwoDigitString

Function integerToTwoDigitString

date-conversion-attention/index.js:97–100  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

95});
96
97function integerToTwoDigitString(x) {
98 const str = `${x / 100}`.substr(2);
99 return str.length == 1 ? str + '0' : str;
100}
101
102async function init() {
103 try {

Callers 1

index.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected