Sha256: 4914c6575e89c2a5e62451b661bd5c18509eed23d4d405b5af8245ffc40ddc1d
Contents?: true
Size: 339 Bytes
Versions: 7
Compression:
Stored size: 339 Bytes
Contents
# frozen_string_literal: true module AjaxDatatablesRails module Datatable class SimpleSearch TRUE_VALUE = 'true' def initialize(options = {}) @options = options end def value @options[:value] end def regexp? @options[:regex] == TRUE_VALUE end end end end
Version data entries
7 entries across 7 versions & 1 rubygems