Skip to content

diffFlagsContains

diff 플래그가 특정 플래그를 포함하는지 확인해요.

시그니처

ts
function diffFlagsContains(source: number, target: number): boolean;

파라미터

  • source필수 · number

    소스 플래그.

  • target필수 · number

    대상 플래그.

반환 값

  • boolean

    소스 플래그가 대상 플래그를 포함한다면 true를 반환해요.

예제

ts
import { DiffDelta, DiffFlags, diffFlagsContains } from 'es-git';

const delta: DiffDelta;
console.assert(diffFlagsContains(delta.flags(), DiffFlags.Binary | DiffFlags.ValidId));

MIT 라이선스에 따라 배포됩니다.