wo-core-coco/coco.js
2024-02-05 09:50:07 +08:00

14 lines
482 B
JavaScript

// colors only works in nodejs cli
// consola works in nodejs and browser
// chalk 和 colors 用法类似。
// in uniapp: globalThis.uni && globalThis.UniApp
// in vue: globalThis.getApp?.()?.constructor?.name === 'Vue'
module.exports =
process?.release?.name === 'node' ? require('./coco-nodejs.js')
: globalThis.window && globalThis.location ? require('./coco-browser.js')
: globalThis.uniCloud ? require('./coco-unicloud.js')
: require('./coco-app.js')