Sha256: 9d49f71f250811fc86f753d83324a933456fa876b47cb890e9fade633f9b12d4
Contents?: true
Size: 309 Bytes
Versions: 10
Compression:
Stored size: 309 Bytes
Contents
module OpenActive module Validators class NullValidator < BaseValidator # Run validation on the given value. # # @param value [mixed] The value to validate. # @return [Boolean] Whether validation passes or not. def run(value) value.nil? end end end end
Version data entries
10 entries across 10 versions & 1 rubygems