npm.io
0.3.2 • Published 4 years ago

@chookscord/validate

Licence
MIT
Version
0.3.2
Deps
0
Size
8 kB
Vulns
0
Weekly
0
Stars
20

@chookscord/validate

Small Discord interaction validation library.

Usage

Returns null for passing tests, returns a string when failing.

import { testCommandName, testDescription } from './src';

testCommandName('valid-name'); // OK: null
testCommandName('Invalid Name'); // FAIL: error message

testDescription('Short description.'); // OK
testDescription('Just imagine this is over 100 chars.'); // FAIL

// And a few other tests.