proxor
Version:
A Node.js utility to fetch and analyze user profiles from multiple coding platforms including LeetCode, GeeksForGeeks, Codechef and Codeforces.
6 lines (5 loc) • 301 B
JavaScript
const getLeetcodeData = require('./src/leetcode.js');
const getGFGData = require('./src/gfg.js');
const getCodeforcesData = require('./src/codeforces.js');
const getCodeChefData = require('./src/codechef.js');
module.exports = { getCodeChefData, getCodeforcesData, getGFGData, getLeetcodeData };