jsAnd2 function

bool jsAnd2(
  1. dynamic a,
  2. dynamic b
)

Implementation

bool jsAnd2(dynamic a, dynamic b) {
  return isTrue(jsAnd(a, b));
}