Method: ConfCtl::NixFormat#pad

Defined in:
lib/confctl/nix_format.rb

#pad(str, indent: true) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/confctl/nix_format.rb', line 26

def pad(str, indent: true)
  if indent
    "#{' ' * @level}#{str}"
  else
    str
  end
end