Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
97
function
integerToTwoDigitString(x) {
98
const
str = `${x / 100}`.substr(2);
99
return
str.length == 1 ? str +
'0'
: str;
100
}
101
102
async
function
init() {
103
try {
Callers
1
index.js
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected