🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

flat-object

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flat-object

Utilities for working with nested data structures

latest
npmnpm
Version
0.0.2
Version published
Weekly downloads
6
-14.29%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

$ npm install flat-object

Methods

flatten({ data })

Returns an array of "flattened" paths for the Object specified.

import { flatten } from 'flat-object'

const data = {
  nestedArray: [
    'string',
    {
      boolean: true,
      string: 'yes'
    }
  ]
}

flatten({ data }) // "nestedArray[0]", "nestedArray[1]", "nestedArray[1].boolean", "nestedArray[1].string"
read({ data, path })

Returns the property value of the flattened path or undefined if the property does not exist.

import { read } from 'flat-object'

const data = {
  name: 'Example',
  nestedArray: [
    { id: 1 },
    { id: 2 }
  ]
}

read({
  data,
  path: 'name'
}) // "Example"

read({
  data,
  path: 'nestedArray[1].id'
}) // 2
write({ data, path, value })

Writes a value to the specified path. This method just-in-time creates any missing properties along the specified path.

This method will throw an error if an Array value is specified for a property containing an Object (or vice versa).

import { write } from 'flat-object'

const data = {}

write({
  data,
  path: 'name',
  value: 'Example'
}) // data == { name: "Example" }

flatten({
  data,
  path: 'address.street',
  value: '123 Bird Ave'
}) // data == { name: "Example", address: { street: "123 Bird Ave" } }

flatten({
  data,
  path: 'address[0]',
  value: 123
}) // Throws error (since address is already defined as an Object)

FAQs

Package last updated on 02 Jun 2016

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