You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
238 B

7 years ago
  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. };