1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# frozen_string_literal: true
module TTY
module Utils
module_function
BLANK_REGEX = /\A[[:space:]]*\z/o.freeze
# Extract options hash from array argument
#
# @param [Array[Object]] args
#
# @api public
def extract_options(args)
options = args.last
options.respond_to?(:to_hash) ? options.to_hash.dup : {}
end
def extract_options!(args)
args.last.respond_to?(:to_hash) ? args.pop : {}
end
# Check if value is nil or an empty string
#
# @param [Object] value
# the value to check
#
# @return [Boolean]
#
# @api public
def blank?(value)
value.nil? || BLANK_REGEX === value
end
# Deep copy object
#
# @api public
def deep_copy(object)
Marshal.load(Marshal.dump(object))
end
end # Utils
end # TTY
|