• File: define_crc.js
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/crc/define_crc.js
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 174 bytes
  • MIME-type: text/plain
  • Charset: utf-8
export default function(model, calc) {
  const fn = (buf, previous) => calc(buf, previous) >>> 0;
  fn.signed = calc;
  fn.unsigned = fn;
  fn.model = model;

  return fn;
}