GithubHelp home page GithubHelp logo

Comments (5)

maoosi avatar maoosi commented on August 23, 2024 2

Wow that was quick @ehmicky, awesome work!

I should now be able to use wild-wild-utils as a dependency to my own OSS project and simplify/strengthen some parts: https://github.com/maoosi/prisma-appsync

Thanks!

from wild-wild-path.

ehmicky avatar ehmicky commented on August 23, 2024

Hi @maoosi,

Thanks for the request!
Good ideas, let me work on it and reach back. 👍

from wild-wild-path.

ehmicky avatar ehmicky commented on August 23, 2024

This is now available in wild-wild-utils 4.5.0. 🎉

wild-wild-path focuses on CRUD operations, while wild-wild-utils on functional utilities like the one you described, which is why this was added to that other repository.

The new method is named flatten() and is documented here and there.

import { flatten } from 'wild-wild-utils'

const target = {
  username: 'johndoe',
  profile: { image: 'avatar.jpg', verified: true, views: 5 },
  tags: ['foo', 'bar']
}
flatten(target)
// {
//   "username": "johndoe",
//   "profile.image": "avatar.jpg",
//   "profile.verified": true,
//   "profile.views": 5,
//   "tags.0": "foo",
//   "tags.1": "bar"
// }
flatten(target, { sort: true })
// {
//   "profile.image": "avatar.jpg",
//   "profile.verified": true,
//   "profile.views": 5,
//   "tags.0": "foo",
//   "tags.1": "bar",
//   "username": "johndoe"
// }
flatten(target, { shallowArrays: true })
// {
//   "username": "johndoe",
//   "profile.image": "avatar.jpg",
//   "profile.verified": true,
//   "profile.views": 5,
//   "tags": ["foo", "bar"]
// }

As part of this, I also added a new option shallowArrays to both wild-wild-path and wild-wild-utils. When set to true, it prevents recursing on arrays.

Please note the dot-delimited paths are safe to use with other wild-wild-path and wild-wild-utils methods. For example, if a property key is odd (e.g. is an empty string, or has a dot in it), it will be properly escaped.

I hope this works!

from wild-wild-path.

ehmicky avatar ehmicky commented on August 23, 2024

@all-contributors Please add @maoosi for those great ideas.

from wild-wild-path.

allcontributors avatar allcontributors commented on August 23, 2024

@ehmicky

I've put up a pull request to add @maoosi! 🎉

from wild-wild-path.

Related Issues (1)

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.