UNPKG

util-ex

Version:

Browser-friendly enhanced util fully compatible with standard node.js

9 lines (8 loc) 232 B
/** * Determines whether the given argument is a boolean. * * @param {*} arg - The argument to check. * @returns {boolean} Whether the argument is a boolean. */ export function isBool(arg: any): boolean; export default isBool;