Bakhtina Sofya b84cb877be 1st comm | il y a 3 semaines | |
---|---|---|
.. | ||
.travis.yml | il y a 3 semaines | |
LICENSE | il y a 3 semaines | |
README.md | il y a 3 semaines | |
index.js | il y a 3 semaines | |
package.json | il y a 3 semaines | |
test.js | il y a 3 semaines |
Pass in a string, get a buffer back. Pass in a buffer, get the same buffer back.
npm install to-buffer
var toBuffer = require('to-buffer')
console.log(toBuffer('hi')) // <Buffer 68 69>
console.log(toBuffer(Buffer('hi'))) // <Buffer 68 69>
console.log(toBuffer('6869', 'hex')) // <Buffer 68 69>
console.log(toBuffer(43)) // throws
MIT