Skip to content
This repository has been archived by the owner on Oct 20, 2021. It is now read-only.

Latest commit

 

History

History
25 lines (20 loc) · 583 Bytes

prnt.md

File metadata and controls

25 lines (20 loc) · 583 Bytes

Prnt

Validates if the given input is a prnt.

Valid values:

validator.prnt().validate(' ');
validator.prnt().validate('LKA#@%.54');
validator.prnt().validate('foobar');
validator.prnt().validate('16-50');
validator.prnt().validate('123');
validator.prnt().validate('foo bar');
validator.prnt().validate('#$%&*_');

Invalid values:

validator.prnt().validate('');
validator.prnt().validate(null);
validator.prnt().validate(undefined);
validator.prnt().validate(`foo${String.fromCharCode(7)}bar`);
validator.prnt().validate(`foo${String.fromCharCode(10)}bar`);