Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

falcon-punch

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

falcon-punch

Flatten your objects and arrays by a delimiter

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

falcon-punch

Flatten your objects and arrays by a delimiter

Build Status Coverage Status npm version JavaScript Style Guide

Install

$ npm install --save falcon-punch

Not using Node or a module bundler? Use a UMD build via the <script> tag.

Usage

import falconPunch from 'falcon-punch'

const o = {
  a: 1,
  b: {
    c: 'falcon',
    d: {
      e: 'punch'
    }
  }
}
// { a: 1, 'b_c': 'falcon', 'b_d_e': 'punch' }
falconPunch(o)

// Specify opts: delimiter & maxDepth
// { a: 1, 'b???c': 'falcon', 'b???d': { e: 'punch' } }
falconPunch(o, { delimiter: '???', maxDepth: 1 })

// go crazy
const arr = [
  {
    a: [
      [
        {
          b: 0,
          c: 1
        },
        10
      ],
      {
        d: {
          e: null,
          f: [],
          g: {},
          h: undefined
        }
      }
    ]
  },
  [[1, [{}]]]
]
/*
{
  '0.a.0.0.b': 0,
  '0.a.0.0.c': 1,
  '0.a.0.1': 10,
  '0.a.1.d.e': null,
  '0.a.1.d.f': [],
  '0.a.1.d.g': {},
  '0.a.1.d.h': undefined,
  '1.0.0': 1,
  '1.0.1.0': {}
}
*/
falconPunch(arr, { delimiter: '.' })

Keywords

FAQs

Package last updated on 27 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc