Skip to content

thlorenz/stringify-buffer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stringify-buffer build status

Converts a buffer a collection of strings, one for each possible encoding.

const stringify = require('stringify-buffer')
const buf = Buffer.from('Hello ☃')
console.log(stringify(buf))
{ ascii: 'Hello b\u0018\u0003',
  utf8: 'Hello ☃',
  utf16le: '效汬飢',
  binary: 'Hello �',
  base64: 'SGVsbG8g4piD',
  hex: '48656c6c6f20e29883' }

Installation

npm install stringify-buffer

stringifyBuffer

Stringifies the given buffer once for each encoding and adds the result a hash.

Parameters

Returns Object<string, string> a hash with a string value of the buffer for each of the supplied encodings

stringifyBuffer.encodings

Returns an array of all valid Buffer encodings that are supported. This is the same array that is used if no encodings is passed to @see stringifyBuffers.

Returns Array<string> all valid Buffer encodings

License

MIT

About

Converts a buffer a collection of strings, one for each possible encoding.

Resources

License

Stars

Watchers

Forks

Packages

No packages published