Permalink
Cannot retrieve contributors at this time
23 lines (16 sloc)
611 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/md5-hex/index.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="node"/> | |
/** | |
Create a MD5 hash with hex encoding. | |
@param data - Prefer buffers as they're faster to hash, but strings can be useful for small things. | |
Pass an array instead of concatenating strings and/or buffers. The output is the same, but arrays do not incur the overhead of concatenation. | |
@example | |
``` | |
import * as fs from 'fs'; | |
import md5Hex = require('md5-hex'); | |
const buffer = fs.readFileSync('unicorn.png'); | |
md5Hex(buffer); | |
//=> '1abcb33beeb811dca15f0ac3e47b88d9' | |
``` | |
*/ | |
declare function md5Hex(data: Buffer | string | ReadonlyArray<Buffer | string>): string; | |
export = md5Hex; |