Get Paste

Fetching a paste from our paste bin

PropTypeDefault
key
string
none
ES6
import { PasteClient } from '@cordxapp/pastes';
 
const paste = new PasteClient();
 
let res = await paste.get(key)
 
return console.log(res)

Commonjs
const { PasteClient } = require('@cordxapp/pastes');
 
const paste = new PasteClient();
 
let res = await paste.get(key)
 
return console.log(res)

Last updated on