Giter Club home page Giter Club logo

Comments (1)

MattJLeach avatar MattJLeach commented on July 28, 2024

@tangkhaiphuong

I've got the same issue so I've played around with the flatten function to get it working. I've taken out the opts for now to keep it simple (and done it in typescript albeit with some any's). If I get a chance to put the opts back in I'll do a PR. The main issue is with the delimiter option as you now have 2 ('.' for object and brackets for an array).

Here's what I've got:

function flatten(object: any): { [key: string]: any } {
    const output: any = {};

    function step(object: any, prev?: any, currentDepth?: number, useBrackets?: boolean) {
        const depth = currentDepth || 1;
        Object.keys(object).forEach(function (key) {
            const value = object[key];
            const isarray = Array.isArray(value);
            const type = Object.prototype.toString.call(value);
            const isobject = type === '[object Object]' || type === '[object Array]';

            const newKey = prev
                ? `${prev}${useBrackets ? '[' : '.'}${key}${useBrackets ? ']' : ''}`
                : key;

            if (isobject && Object.keys(value).length) {
                return step(value, newKey, depth + 1, isarray);
            }

            output[newKey] = value;
        });
    }

    step(object);

    return output;
}

I'm looking at the unflatten function now as this doesn't work with arrays and objects in this way

from flat.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.