1.0.0 • Published 8 years ago

from2-encoding v1.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

from2-encoding

Create a stream from a string or buffer, with an encoding parameter for converting strings to buffers. Part of the from2 ecosystem.

Installation

$ npm install from2-encoding

Usage

const from2Encoding = require('from2-encoding')

from2Encoding('hello world', 'utf8').pipe(process.stdout)
from2Encoding('aGVsbG8gd29ybGQ=', 'base64').pipe(process.stdout)
from2Encoding('deadbeef', 'hex').pipe(process.stdout)
from2Encoding(Buffer.from('deadbeef', 'hex'), 'binary').pipe(process.stdout)

API

from2Encoding(data, encoding)

License

MIT