MCPcopy Index your code
hub / github.com/Moddable-OpenSource/moddable / write32

Method write32

tools/mclocal.js:229–234  ·  view source on GitHub ↗
(file, value)

Source from the content-addressed store, hash-verified

227 }
228 }
229 write32(file, value) {
230 file.writeByte(value & 0xff);
231 file.writeByte((value >> 8) & 0xff);
232 file.writeByte((value >> 16) & 0xff);
233 file.writeByte((value >> 24) & 0xff);
234 }
235}

Callers 1

runMethod · 0.45

Calls 1

writeByteMethod · 0.45

Tested by

no test coverage detected