@types/buffer-crc32
TypeScript icon, indicating that this package has built-in type declarations

0.2.4 • Public • Published

Installation

npm install --save @types/buffer-crc32

Summary

This package contains type definitions for buffer-crc32 (https://github.com/brianloveswords/buffer-crc32).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/buffer-crc32.

index.d.ts

/// <reference types="node" />

export = crc32;

/**
 * crc32 that works with binary data and fancy character sets.
 *
 * @example
 * import crc32 = require('buffer-crc32');
 *
 * // works with buffers
 * const buf = Buffer.from([0x00, 0x73, 0x75, 0x70, 0x20, 0x62, 0x72, 0x6f, 0x00]);
 * crc32(buf); // -> <Buffer 94 5a ab 4a>
 *
 * // will cast to buffer if given a string, so you can
 * // directly use foreign characters safely
 * crc32('自動販売機'); // -> <Buffer cb 03 1a c5>
 *
 * // and works in append mode too
 * let partialCrc = crc32('hey');
 * partialCrc = crc32(' ', partialCrc);
 * partialCrc = crc32('sup', partialCrc);
 * partialCrc = crc32(' ', partialCrc);
 * const finalCrc = crc32('bros', partialCrc); // -> <Buffer 47 fa 55 70>
 */
declare function crc32(input: string | Buffer, partialCrc?: Buffer | number): Buffer;

declare namespace crc32 {
    /**
     * Convenience method that returns a signed int instead of a `Buffer`.
     *
     * @example
     * import crc32 = require('buffer-crc32');
     *
     * // works with buffers
     * const buf = Buffer.from([0x00, 0x73, 0x75, 0x70, 0x20, 0x62, 0x72, 0x6f, 0x00]);
     * crc32.signed(buf); // -> -1805997238
     */
    function signed(buffer: string | Buffer, partialCrc?: Buffer | number): number;

    /**
     * Convenience method that returns an unsigned int instead of a `Buffer`.
     *
     * @example
     * import crc32 = require('buffer-crc32');
     *
     * // works with buffers
     * const buf = Buffer.from([0x00, 0x73, 0x75, 0x70, 0x20, 0x62, 0x72, 0x6f, 0x00]);
     * crc32.unsigned(buf); // -> 2488970058
     */
    function unsigned(buffer: string | Buffer, partialCrc?: Buffer | number): number;
}

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: @types/node

Credits

These definitions were written by BendingBender.

Versions

Current Tags

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.2.4
    13,338
  • 0.2.3
    36
  • 0.2.2
    25,891
  • 0.2.1
    0
  • 0.2.0
    17,875

Package Sidebar

Install

npm i @types/buffer-crc32

Weekly Downloads

47,469

Version

0.2.4

License

MIT

Unpacked Size

6.08 kB

Total Files

5

Last publish

Collaborators

  • types