Giter Club home page Giter Club logo

nest-by-tuple's Introduction

nest-by-tuple

Groups an array/object by property values or callback and supports additional metadata

Works like nest-by, but allows you to embed more metadata. Also see group-by or lodash.groupBy.

Status

Usage

nestByTuple(object or array, property, [...properties])

property is typically a function that returns an array in the structure of:

[ indexString, metadata ]

Where indexString is a string that the group will be indexed by, and metadata will be an Object that has data about that group.

Arrays

genders = { m: 'Male', f: 'Female' }

list =
  [ { name: 'Marge', gender: 'f' },
    { name: 'Homer', gender: 'm' },
    { name: 'Bart', gender: 'm' } ]

result = nestByTuple(list,
  (person) => [ person.gender, { genderName: genders[person.gender] } ])

//  f:
//    genderName: 'Famale',
//    values: [ { name: 'Marge', gender: 'f' } ]
//  m:
//    genderName: 'Male',
//    values: [
//     { name: 'Homer', gender: 'm' },
//     { name: 'Bart', gender: 'm' } ]

Objects

list =
  { marge: { name: 'Marge', gender: 'f' },
    homer: { name: 'Homer', gender: 'm' },
    bart: { name: 'Bart', gender: 'm' } }

var result = nestBy(list,
  (person) => [ person.gender, { genderName: genders[person.gender] } ])

//  f:
//    genderName: 'Famale',
//    values: 
//      marge: { name: 'Marge', gender: 'f' }
//  m:
//    genderName: 'Male',
//    values:
//      homer: { name: 'Homer', gender: 'm' }
//      bart: { name: 'Bart', gender: 'm' }

Recursive

Yes, recursion is supported by passing in more property parameters.

Thanks

nest-by-tuple © 2015+, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz

nest-by-tuple's People

Contributors

rstacruz avatar

Stargazers

Fabien Franzen avatar Anthony Short avatar

Watchers

 avatar James Cloos avatar  avatar

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.