主题
是否为真值。
传入一个值,如果是真值则返回true,否则返回false。
true
false
import { isTruth } from '@renzp/utils'; isTruth(false); // false isTruth(1); // true
T
boolean