All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.esm.utils.flatten.js Maven / Gradle / Ivy

Go to download

Responsive and accessible React UI components built with React and Emotion

The newest version!
"use strict";
import { walkObject } from './walk-object.js';

function flatten(values, stop) {
  const result = {};
  walkObject(
    values,
    (token, paths) => {
      if (token) {
        result[paths.join(".")] = token.value;
      }
    },
    { stop }
  );
  return result;
}

export { flatten };




© 2015 - 2025 Weber Informatics LLC | Privacy Policy