This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
node-task/node_modules/express-session/node_modules/crc/lib/create.js

11 lines
211 B
JavaScript

// Generated by CoffeeScript 1.7.1
module.exports = function(calc) {
var fn;
fn = function(buf, previous) {
return calc(buf, previous) >>> 0;
};
fn.signed = calc;
fn.unsigned = fn;
return fn;
};