fix(ci): update

This commit is contained in:
2019-11-21 14:20:57 +00:00
parent 58d4d17e8a
commit c06ac22a59
7 changed files with 74 additions and 112 deletions

View File

@ -35,7 +35,7 @@ export let sha256FromStringSync = (stringArg): string => {
/**
* Computes sha256 Hash from String
*/
export const sha256FromString = async(stringArg: string): Promise<string> => {
export const sha256FromString = async (stringArg: string): Promise<string> => {
const hash = plugins.crypto.createHash('sha256');
hash.update(stringArg);
const hashResult = hash.digest('hex');