prettier/tests/flow/type-at-pos/predicates.js

7 lines
90 B
JavaScript

/* @flow */
let x = 0;
if (x == null) {}
if (x == undefined) {}
if (Array.isArray(x)) {}