dijkstra-backend-cloudron/node_modules/helmet-csp/dist/lib/is-boolean.js

5 lines
135 B
JavaScript
Raw Normal View History

"use strict";
module.exports = function isBoolean(value) {
return Object.prototype.toString.call(value) === '[object Boolean]';
};