PATH:
usr
/
lib
/
node_modules
/
forever
/
node_modules
/
is-boolean-object
'use strict'; var callBound = require('call-bound'); var $boolToStr = callBound('Boolean.prototype.toString'); var $toString = callBound('Object.prototype.toString'); /** @type {import('.')} */ var tryBooleanObject = function booleanBrandCheck(value) { try { $boolToStr(value); return true; } catch (e) { return false; } }; var boolClass = '[object Boolean]'; var hasToStringTag = require('has-tostringtag/shams')(); /** @type {import('.')} */ module.exports = function isBoolean(value) { if (typeof value === 'boolean') { return true; } if (value === null || typeof value !== 'object') { return false; } return hasToStringTag && Symbol.toStringTag in value ? tryBooleanObject(value) : $toString(value) === boolClass; };
[-] tsconfig.json
[edit]
[-] .nycrc
[edit]
[-] README.md
[edit]
[-] package.json
[edit]
[+]
.github
[+]
..
[+]
test
[-] LICENSE
[edit]
[-] .eslintrc
[edit]
[-] index.d.ts
[edit]
[-] .editorconfig
[edit]
[-] index.js
[edit]
[-] CHANGELOG.md
[edit]