UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

11 lines (9 loc) 186 B
'use strict'; /** * Test whether value is a boolean * @param {*} value * @return {boolean} isBoolean */ exports.isBoolean = function(value) { return typeof value == 'boolean'; };