2d856bd242189aac7aa1aa1f374a13a0e1c7ccdb
[sdnc/oam.git] / dgbuilder / dgeflows / node_modules / express / node_modules / etag / node_modules / crc / lib / create.js
1 // Generated by CoffeeScript 1.7.1
2 module.exports = function(model, calc) {
3   var fn;
4   fn = function(buf, previous) {
5     return calc(buf, previous) >>> 0;
6   };
7   fn.signed = calc;
8   fn.unsigned = fn;
9   fn.model = model;
10   return fn;
11 };