UNPKG

220 BJavaScriptView Raw
1"use strict";
2
3function int2buff(value, length) {
4 var i = length || 4;
5 var out = new Array(i);
6 while(i--) {
7 out[i] = value % 0x100;
8 value >>= 8;
9 }
10 return new Buffer(out);
11}
12
13module.exports = int2buff;