Raw Paste

Fetching a raw paste from our paste bin

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

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

Last updated on