0xc14m1z/regler

View on GitHub
src/function/index.js

Summary

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

function fn() {
  this.test = function test(value) {
    return this.parent.test(value) && typeof value === 'function'
  }

  return this
}

export default Validator.make(fn)