class JqueryQueryBuilder::Operators::NotBetween

Public Instance Methods

evaluate(input, bounds) click to toggle source
# File lib/jquery_query_builder/operators/not_between.rb, line 4
def evaluate(input, bounds)
  input <= bounds[0] || input >= bounds[1]
end