blob: 1d7bae016e9c8521c4332f2969a54e790dc79ff5 (
plain)
1
2
3
4
5
6
|
const superagent = require('superagent');
module.exports = async function hastebin(text) {
let res = await superagent.post('https://hasteb.in/documents').send(text);
return JSON.parse(res.text).key;
};
|