chromium/third_party/material_web_components/components-chromium/node_modules/@material/web/internal/controller/string-converter.js

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