You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
330 B

import { hashSignature } from './hashSignature.js';
import { toSignature } from './toSignature.js';
/**
* Returns the hash (of the function/event signature) for a given event or function definition.
*/
export function toSignatureHash(fn) {
return hashSignature(toSignature(fn));
}
//# sourceMappingURL=toSignatureHash.js.map