0 Star 2 Fork 2

Leng/NeteaseCloudMusicApi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
Leng 提交于 2020-07-10 11:44 . git同步
const fs = require('fs')
const path = require('path')
const request = require('./util/request')
const { cookieToJson } = require('./util/index')
let obj = {}
fs.readdirSync(path.join(__dirname, 'module')).reverse().forEach(file => {
if(!file.endsWith('.js')) return
let fileModule = require(path.join(__dirname, 'module', file))
obj[file.split('.').shift()] = function (data) {
if(typeof data.cookie === 'string'){
data.cookie = cookieToJson(data.cookie)
}
return fileModule({
...data,
cookie: data.cookie ? data.cookie : {}
}, request)
}
})
module.exports = obj
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tb3706666/NeteaseCloudMusicApi.git
git@gitee.com:tb3706666/NeteaseCloudMusicApi.git
tb3706666
NeteaseCloudMusicApi
NeteaseCloudMusicApi
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385