UNPKG

@vue-interface/utils

Version:

A utility package for Vue Interface.

7 lines 220 B
export default function isBoolean(subject) { return typeof subject === 'boolean' || ( typeof subject === 'object' && subject !== null && typeof subject.valueOf() === 'boolean' ); }