module Autostrip

Constants

VERSION

Public Class Methods

perform(value) click to toggle source
# File lib/autostrip.rb, line 10
def perform(value)
  value.squish
end
performable?(value) click to toggle source
# File lib/autostrip.rb, line 14
def performable?(value)
  String === value
end