Initial commit for OpenECOMP SDN-C OA&M
[sdnc/oam.git] / dgbuilder / dgeflows / node_modules / serve-static / node_modules / send / 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 };