cxc-szcx-uniapp/uni_modules/lime-shared/obj2url/index.ts

11 lines
234 B
TypeScript

// @ts-nocheck
// #ifndef UNI-APP-X
type UTSJSONObject = Record<string, any>
// #endif
export function obj2url(data: UTSJSONObject, isPrefix: boolean = false): string {
const prefix = isPrefix ? '?' : '';
const _result = [];
}