Initial Commit

This commit is contained in:
plane000
2018-05-19 22:38:38 +01:00
parent 0e7fb409cf
commit 5ad3eacfce
283 changed files with 37470 additions and 0 deletions

9
node_modules/snekfetch/src/qs_mock.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
exports = {
parse: (str) => {
const parsed = {};
for (const [k, v] of new Window.URLSearchParams(str).entries())
parsed[k] = v;
return parsed;
},
stringify: (obj) => new window.URLSearchParams(obj).toString(),
};