/** * 将JS对象中key和value通过连接符连接后生成一个新的数组 * @param obj JS对象 * @param join 连接符 */ export default function to_array(obj: object, join: string): string[];