ref(fetch): manual removal of unused request

This commit is contained in:
AJ ONeal
2024-10-14 08:50:05 +00:00
parent 5d28f7333a
commit f4ec7ca640
7 changed files with 11 additions and 13 deletions

View File

@@ -3,14 +3,14 @@
var git = require('../_common/git-tag.js');
var gitUrl = 'https://github.com/ziglang/zig.vim.git';
module.exports = async function (request) {
module.exports = async function () {
let all = await git(gitUrl);
return all;
};
if (module === require.main) {
module.exports(require('@root/request')).then(function (all) {
module.exports().then(function (all) {
all = require('../_webi/normalize.js')(all);
let samples = JSON.stringify(all, null, 2);