File size: 173 Bytes
1e92f2d |
1 2 3 4 |
export function isAtomicSiteWithoutBusinessPlan( holds: string[] ): boolean {
return holds.includes( 'TRANSFER_ALREADY_EXISTS' ) && holds.includes( 'NO_BUSINESS_PLAN' );
}
|
1e92f2d |
1 2 3 4 |
export function isAtomicSiteWithoutBusinessPlan( holds: string[] ): boolean {
return holds.includes( 'TRANSFER_ALREADY_EXISTS' ) && holds.includes( 'NO_BUSINESS_PLAN' );
}
|