ghaction-upx/node_modules/to-buffer
2020-01-17 09:39:25 +01:00
..
.travis.yml Update node_modules 2020-01-17 09:39:25 +01:00
index.js Update node_modules 2020-01-17 09:39:25 +01:00
LICENSE Update node_modules 2020-01-17 09:39:25 +01:00
package.json Update node_modules 2020-01-17 09:39:25 +01:00
README.md Update node_modules 2020-01-17 09:39:25 +01:00
test.js Update node_modules 2020-01-17 09:39:25 +01:00

to-buffer

Pass in a string, get a buffer back. Pass in a buffer, get the same buffer back.

npm install to-buffer

build status

Usage

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

License

MIT