mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
const createOption = (query, crypto = '') => {
|
|
return {
|
|
crypto: query.crypto || crypto || '',
|
|
cookie: query.cookie,
|
|
ua: query.ua || '',
|
|
proxy: query.proxy,
|
|
realIP: query.realIP,
|
|
e_r: query.e_r || undefined,
|
|
}
|
|
}
|
|
module.exports = createOption
|