Skip to main content

ByteFromTo()

특정 바이트 단위를 다른 바이트 단위로 변환합니다.

Signature

byteFromTo: (from: ByteUnit, to: ByteUnit, value: number) => number

Parameters

Parameter

Type

Description

from

ByteUnit

변환할 바이트 단위

to

ByteUnit

변환될 바이트 단위

value

number

변환할 값

Returns

number

변환된 바이트 값

Example

const KbToB = byteFromTo('KB', 'B')
KbToB(1) // 1024

const GBToMb = byteFromTo('gb', 'mb')
GBToMb(1) // 1024

byteFromTo('KB', 'B', 1) // 1024
byteFromTo('KB')('B')(1) // 1024