0xc14m1z/regler

View on GitHub
src/array/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import Validator from '../validator'

function array() {
  this.test = function test(value) {
    return this.parent.test(value) && value instanceof Array
  }

  return this
}

export default Validator.make(array)