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