MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / packedVersionToHumanReadable

Function packedVersionToHumanReadable

src/minimum_runtime_check.js:19–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 }
18 // 300000 -> "30.0.0"
19 var packedVersionToHumanReadable = n => [n / 10000 | 0, (n / 100 | 0) % 100, n % 100].join('.');
20
21 var TARGET_NOT_SUPPORTED = {{{ TARGET_NOT_SUPPORTED }}};
22

Callers 1

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected