aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/crc/lib/create.js
blob: 8d11f5c19ff74ffebd14d89e6e1ca94781d2c4e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Generated by CoffeeScript 1.9.2
module.exports = function(model, calc) {
  var fn;
  fn = function(buf, previous) {
    return calc(buf, previous) >>> 0;
  };
  fn.signed = calc;
  fn.unsigned = fn;
  fn.model = model;
  return fn;
};