Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@types/buffer-crc32
Advanced tools
npm install --save @types/buffer-crc32
This package contains type definitions for buffer-crc32 (https://github.com/brianloveswords/buffer-crc32).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/buffer-crc32.
// Type definitions for buffer-crc32 0.2
// Project: https://github.com/brianloveswords/buffer-crc32
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <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;
}
These definitions were written by BendingBender.
FAQs
TypeScript definitions for buffer-crc32
We found that @types/buffer-crc32 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.