package utils.conversion { /** Converts bits to bytes. @param bits: The number of bits. @return Returns the number of bytes. */ public function bitsToBytes(bits:Number):Number { return bits / 8; } }