Clone and edit this document
Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
Yup test exact string length
node v8.17.0
version:
master
endpoint
share
tweet
const yup = require('yup') const schema = yup.string() .test('len', 'Must be exactly 5 characters', val => val.length === 5) schema.validateSync('12345')
Loading…
no comments
sign in
to comment