- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
/**
|
|
* 是否是布尔类型
|
|
*
|
|
* @param {Object} value 测试的值
|
|
* @return {Boolean}
|
|
*/
|
|
import isType from './is-type';
|
|
var isBoolean = function (value) {
|
|
return isType(value, 'Boolean');
|
|
};
|
|
export default isBoolean;
|
|
//# sourceMappingURL=is-boolean.js.map
|