Class: Cmdlet::Case::BackSlash

Inherits:
BaseCmdlet show all
Defined in:
lib/cmdlet/case/back_slash.rb

Overview

BackSlash: Convert to back slash notation

Instance Method Summary collapse

Methods inherited from BaseCmdlet

#tokenizer

Instance Method Details

#call(value) ⇒ String

Returns value converted to back_slash case.

Parameters:

  • value (String|Int)
    • value - to be converted

Returns:

  • (String)

    value converted to back_slash case



11
12
13
# File 'lib/cmdlet/case/back_slash.rb', line 11

def call(value)
  tokenizer.parse(value, preserve_case: true, separator: '\\')
end