9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { isNodeJSEnabled } from "./tool"
|
|
|
|
/**
|
|
* cep_node 为ps内置的全局变量
|
|
*/
|
|
//@ts-ignore
|
|
export const path = (isNodeJSEnabled() ? cep_node.require('path') : {}) as typeof import('path')
|
|
|