import { judge } from '@ataola/utils';
console.log(judge.isNull(null)) // true
import { judge } from '@ataola/utils';
console.log(judge.isString('peace world')) // true
import { judge } from '@ataola/utils';
console.log(judge.isNumber(2020)) // true
import { judge } from '@ataola/utils';
const foo = Symbol('foo');
console.log(judge.isSymbol(foo)) // true
import { judge } from '@ataola/utils';
console.log(judge.sUndefined(undefined)) // true
import { judge } from '@ataola/utils';
console.log(judge.isBoolean(true)) // true
import { judge } from '@ataola/utils';
console.log(judge.isBigInt(2020n)) // true
import { judge } from '@ataola/utils';
console.log(judge.isFunction(() => {}))) // true
import { judge } from '@ataola/utils';
console.log(judge.isArray([])) // true
import { judge } from '@ataola/utils';
console.log(judge.isObject({})) // true
import { judge } from '@ataola/utils';
console.log(judge.isPrototype(Date.prototype)) // true
import { judge } from '@ataola/utils';
const map = new Map();
console.log(judge.isMap(map)) // true
import { judge } from '@ataola/utils';
const weakMap = new WeakMap();
console.log(judge.isWeakMap(weakMap)) // true
import { judge } from '@ataola/utils';
const set = new Set();
console.log(judge.isSet(set)) // true
import { judge } from '@ataola/utils';
const weakSet = new WeakSet();
console.log(judge.isWeakSet(weakSet)) // true
import { judge } from '@ataola/utils';
console.log(judge.isError(new Error())) // true
import { judge } from '@ataola/utils';
console.log(judge.isScreenXS()) // false
import { judge } from '@ataola/utils';
console.log(judge.isScreenSM()) // true
import { judge } from '@ataola/utils';
console.log(judge.isScreenMD()) // true
import { judge } from '@ataola/utils';
console.log(judge.isScreenLG()) // true
import { judge } from '@ataola/utils';
console.log(judge.isScreenXL()) // true
import { judge } from '@ataola/utils';
console.log(judge.isEmpty(null)) // true
import { judge } from '@ataola/utils';
console.log(judge.isDate(Date.now())) // true