Sha256: b17f20855eb39293c20292820c57e0aeb31f08e72f3395ad1a9a928fa71f622c

Contents?: true

Size: 1.69 KB

Versions: 28

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

# Strips leading and trailing spaces from a String
#
# This function is compatible with the stdlib function with the same name.
#
# The function does the following:
# * For a `String` the conversion removes all leading and trailing ASCII white space characters such as space, tab, newline, and return.
#   It does not remove other space-like characters like hard space (Unicode U+00A0). (Tip, `/^[[:space:]]/` regular expression
#   matches all space-like characters).
# * For an `Iterable[Variant[String, Numeric]]` (for example an `Array`) each value is processed and the conversion is not recursive.
# * If the value is `Numeric` it is simply returned (this is for backwards compatibility).
# * An error is raised for all other data types.
#
# @example Removing leading and trailing space from a String
# ```puppet
# " hello\n\t".strip()
# strip(" hello\n\t")
# ```
# Would both result in `"hello"`
#
# @example Removing trailing space from strings in an Array
# ```puppet
# [" hello\n\t", " hi\n\t"].strip()
# strip([" hello\n\t", " hi\n\t"])
# ```
# Would both result in `['hello', 'hi']`
#
Puppet::Functions.create_function(:strip) do
  dispatch :on_numeric do
    param 'Numeric', :arg
  end

  dispatch :on_string do
    param 'String', :arg
  end

  dispatch :on_iterable do
    param 'Iterable[Variant[String, Numeric]]', :arg
  end

  # unit function - since the old implementation skipped Numeric values
  def on_numeric(n)
    n
  end

  def on_string(s)
    s.strip
  end

  def on_iterable(a)
    a.map { |x| do_strip(x) }
  end

  def do_strip(x)
    # x can only be a String or Numeric because type constraints have been automatically applied
    x.is_a?(String) ? x.strip : x
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
puppet-8.10.0 lib/puppet/functions/strip.rb
puppet-8.10.0-x86-mingw32 lib/puppet/functions/strip.rb
puppet-8.10.0-x64-mingw32 lib/puppet/functions/strip.rb
puppet-8.10.0-universal-darwin lib/puppet/functions/strip.rb
puppet-8.9.0 lib/puppet/functions/strip.rb
puppet-8.9.0-x86-mingw32 lib/puppet/functions/strip.rb
puppet-8.9.0-x64-mingw32 lib/puppet/functions/strip.rb
puppet-8.9.0-universal-darwin lib/puppet/functions/strip.rb
puppet-8.8.1 lib/puppet/functions/strip.rb
puppet-8.8.1-x86-mingw32 lib/puppet/functions/strip.rb
puppet-8.8.1-x64-mingw32 lib/puppet/functions/strip.rb
puppet-8.8.1-universal-darwin lib/puppet/functions/strip.rb
puppet-8.7.0 lib/puppet/functions/strip.rb
puppet-8.7.0-x86-mingw32 lib/puppet/functions/strip.rb
puppet-8.7.0-x64-mingw32 lib/puppet/functions/strip.rb
puppet-8.7.0-universal-darwin lib/puppet/functions/strip.rb
puppet-8.6.0 lib/puppet/functions/strip.rb
puppet-8.6.0-x86-mingw32 lib/puppet/functions/strip.rb
puppet-8.6.0-x64-mingw32 lib/puppet/functions/strip.rb
puppet-8.6.0-universal-darwin lib/puppet/functions/strip.rb