Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 243 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 243 Bytes

SpamWatch API JavaScript Wrapper

Basic Usage

const SpamWatch = require('spamwatch');
const client = new SpamWatch.Client(token);

(async () => {
    const ban = await client.getBan(777000);
    console.log(ban);
})();