UNPKG

hastebin-generator

Version:

An npm module for generating hastebin links.

6 lines 297 B
const { promisified: p } = require('phin'); module.exports = async function(code, lang = ''){ const res = await p({url: 'https://hastebin.com/documents', method: 'POST', data: code}) const { key } = JSON.parse(res.body); return `https://hastebin.com/${key}${lang && `.${lang}`}` }