1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-10 08:10:18 +00:00
musix-oss/node_modules/to-buffer/index.js
MatteZ02 5eb0264906 fix
2019-05-30 12:06:47 +03:00

15 lines
423 B
JavaScript

module.exports = toBuffer
var makeBuffer = Buffer.from && Buffer.from !== Uint8Array.from ? Buffer.from : bufferFrom
function bufferFrom (buf, enc) {
return new Buffer(buf, enc)
}
function toBuffer (buf, enc) {
if (Buffer.isBuffer(buf)) return buf
if (typeof buf === 'string') return makeBuffer(buf, enc)
if (Array.isArray(buf)) return makeBuffer(buf)
throw new Error('Input should be a buffer or a string')
}