Puts a decimal number to a fixed length Buffer object
npm install intobufferintobuffer
==========
Puts a decimal number to a fixed length buffer
Length is optimal
```
npm install intobuffer
`
var intobuffer = require('intobuffer')
// to put a number to a 4 byte long Buffer
intobuffer(3154, 4) //
// try to overflow a buffer, it just fills
intobuffer(315400000000, 4) //
// skip byte length
intobuffer(3154) //
intobuffer(315400000000) //
``