UNPKG

rtech-struct

Version:

Rtech Platform Superstruct Entity

10 lines (7 loc) 189 B
const s = require('superstruct') const NoEmptyString = s.refine(s.string(), 'NoEmptyString', (value) => { return value.length > 0 }) module.exports = { NoEmptyString: NoEmptyString }