仪表盘
版本库
文件存储
活动
搜索
登录
main
/
YBApp
优步移动端App(Android)
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
1.生产报工优化、质量管理优化
小小儁爺
2025-11-18
04e9e6fabb880d892b34cddc4dad7e033e8e7d6e
[YBApp.git]
/
node_modules
/
semver
/
internal
/
debug.js
1
2
3
4
5
6
7
8
9
const debug = (
typeof process === 'object' &&
process.env &&
process.env.NODE_DEBUG &&
/\bsemver\b/i.test(process.env.NODE_DEBUG)
) ? (...args) => console.error('SEMVER', ...args)
: () => {}
module.exports = debug