remove boolean helpers class

This commit is contained in:
iPromKnight
2024-02-06 10:47:59 +00:00
committed by iPromKnight
parent 969d956082
commit 457df6b326

View File

@@ -1,5 +1,5 @@
export class BooleanHelpers {
public static parseBool(value: string, defaultValue: boolean): boolean {
export const BooleanHelpers = {
parseBool: function(value: string | undefined, defaultValue: boolean) {
if (value === undefined) {
return defaultValue;
}