UNPKG

197 BJavaScriptView Raw
1const syncify = require('@snek/syncify');
2const Snekfetch = require('.');
3
4class SnekfetchSync extends Snekfetch {
5 end() {
6 return syncify(super.end());
7 }
8}
9
10module.exports = SnekfetchSync;