Sign in
skia
/
buildbot
/
refs/heads/main
/
.
/
perf
/
modules
/
common
/
commit.ts
blob: a01fae8838c99c3e521509b94d6d8e68b12777cc [
file
] [
edit
]
/**
* @module modules/common/commit
* @description Commit utility functions.
*
*/
export
const
TrimHash
=
(
hash
:
string
):
string
=>
{
return
hash
.
substring
(
0
,
9
);
};