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