mirror of
https://github.com/material-components/material-web.git
synced 2026-03-09 00:09:23 +08:00
15 lines
279 B
TypeScript
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;
|
|
},
|
|
};
|