Sha256: 33006955552c1ecd4baf5868acf61b33a757f9d3f750dd4fd52a10888dc1848b
Contents?: true
Size: 326 Bytes
Versions: 148
Compression:
Stored size: 326 Bytes
Contents
module Puppet module Util module Windows module String def wide_string(str) # if given a nil string, assume caller wants to pass a nil pointer to win32 return nil if str.nil? str.encode('UTF-16LE') end module_function :wide_string end end end end
Version data entries
148 entries across 148 versions & 1 rubygems