add missing inputs to action.yml closes #551 (#554)

This commit is contained in:
Marko Kungla
2021-09-14 17:13:17 +03:00
committed by GitHub
parent 2e221262b1
commit 002bc97450
4 changed files with 26 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
import deburr from 'lodash.deburr';
import { CleanLabel } from '../types/clean-label';
import {CleanLabel} from '../types/clean-label';
/**
* @description
@@ -10,5 +10,5 @@ import { CleanLabel } from '../types/clean-label';
* @return {string} A lowercased, deburred version of the passed in label
*/
export function cleanLabel(label: Readonly<string>): CleanLabel {
return deburr(label.toLowerCase());
}
return deburr(label.toLowerCase());
}