Elizabeth Mitchell c390291687 chore: format files with prettier
PiperOrigin-RevId: 576601342
2023-10-25 11:59:00 -07:00

15 lines
279 B
TypeScript

/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export const stringConverter = {
fromAttribute(value: string | null): string {
return value ?? '';
},
toAttribute(value: string): string | null {
return value || null;
},
};