MCPcopy
hub / github.com/donmccurdy/glTF-Transform / isMultipleOfFour

Function isMultipleOfFour

packages/cli/src/transforms/toktx.ts:457–459  ·  view source on GitHub ↗
(value: number)

Source from the content-addressed store, hash-verified

455}
456
457function isMultipleOfFour(value: number): boolean {
458 return value % 4 === 0;
459}
460
461function ceilMultipleOfFour(value: number): number {
462 if (value <= 4) return 4;

Callers 1

toktxFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected