UNPKG

gatsby-core-utils

Version:

A collection of gatsby utils used in different gatsby packages

9 lines (8 loc) 260 B
import { BinaryLike } from "crypto"; /** * Hashes an input using md5 hash of hexadecimal digest. * * @param input The input to encrypt * @return The content digest */ export declare const createContentDigest: (input: BinaryLike | string | any) => string;