2.11.84 • Published 7 months ago

@taktikorg/quas-praesentium v2.11.84

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@taktikorg/quas-praesentium

Safely flatten a nested JavaScript object.

NPM

Commitizen friendly js-standard-style Build Coverage Known Vulnerabilities

Installation

$ npm i @taktikorg/quas-praesentium

Methods

flatten(obj, delimiter)

Flattens an object to one level deep. Optionally takes a custom delimiter, otherwise uses . by default. Circular references within the object will be replaced with [Circular].

const { flatten } = require('@taktikorg/quas-praesentium')

const original = {
    a: {
        b: {
            c: [{
                val: 'one'
            }, {
                val: 'two'
            }],
            d: 'three'
        },
        e: 'four',
    }
}
original.a.b.f = original.a.b
original.a.b.c.push(original.a)

const flat = flatten(original)
/*
{
  'a.b.c.0.val': 'one',
  'a.b.c.1.val': 'two',
  'a.b.c.2': '[Circular]',
  'a.b.d': 'three',
  'a.e': 'four',
  'a.b.f': '[Circular]'
}
*/

const underscoreFlat = flatten(original, '_')
/*
{
  'a_b_c_0_val': 'one',
  'a_b_c_1_val': 'two',
  'a_b_c_2': '[Circular]',
  'a_b_d': 'three',
  'a_e': 'four',
  'a_b_f': '[Circular]'
}
*/

unflatten(obj, delimiter)

Unflattens an object back to its original nested form. Optionally takes a custom delimiter, otherwise uses . by default. Circular references denoted by [Circular] are treated as Strings.

const { unflatten } = require('@taktikorg/quas-praesentium')

const original = {
    'a.b.c.0.val': 'one',
    'a.b.c.1.val': 'two',
    'a.b.c.2': '[Circular]',
    'a.b.d': 'three',
    'a.e': 'four',
    'a.b.f': '[Circular]'
}


const unflat = unflatten(original)

/*{
  a:{
    b:{
      c:[
        {
          val:'one'
        },
        {
          val:'two'
        },
        '[Circular]'
      ],
      d:'three',
      f:'[Circular]'
    },
    e:'four'
  }
}*/
2.11.84

7 months ago

2.11.83

7 months ago

2.11.82

7 months ago

2.11.81

7 months ago

2.11.80

7 months ago

2.11.79

7 months ago

2.11.78

7 months ago

2.11.77

7 months ago

2.11.76

7 months ago

2.11.75

7 months ago

2.10.75

7 months ago

2.10.74

7 months ago

2.9.74

7 months ago

2.9.73

7 months ago

2.8.73

7 months ago

2.8.72

7 months ago

2.8.71

7 months ago

2.8.70

7 months ago

2.7.70

7 months ago

2.7.69

7 months ago

2.7.68

7 months ago

2.7.67

7 months ago

2.6.67

8 months ago

1.6.67

8 months ago

1.6.66

8 months ago

1.6.65

8 months ago

1.6.64

8 months ago

1.6.63

8 months ago

1.6.62

8 months ago

1.6.61

8 months ago

1.6.60

8 months ago

1.6.59

8 months ago

1.5.59

8 months ago

1.5.58

8 months ago

1.5.57

8 months ago

1.5.56

8 months ago

1.5.55

8 months ago

1.5.54

8 months ago

1.5.53

8 months ago

1.5.52

8 months ago

1.5.51

8 months ago

1.5.50

8 months ago

1.5.49

8 months ago

1.5.48

8 months ago

1.5.47

8 months ago

1.5.46

8 months ago

1.5.45

8 months ago

1.5.44

8 months ago

1.5.43

8 months ago

1.5.42

8 months ago

1.5.41

8 months ago

1.5.40

8 months ago

1.5.39

9 months ago

1.5.38

9 months ago

1.5.37

9 months ago

1.5.36

9 months ago

1.5.35

9 months ago

1.5.34

9 months ago

1.5.33

9 months ago

1.5.32

9 months ago

1.5.31

9 months ago

1.5.30

9 months ago

1.5.29

9 months ago

1.5.28

9 months ago

1.4.28

9 months ago

1.4.27

9 months ago

1.3.27

9 months ago

1.3.26

9 months ago

1.3.25

9 months ago

1.3.24

9 months ago

1.3.23

9 months ago

1.3.22

9 months ago

1.3.21

9 months ago

1.3.20

9 months ago

1.3.19

9 months ago

1.3.18

9 months ago

1.3.17

9 months ago

1.3.16

9 months ago

1.3.15

9 months ago

1.2.15

9 months ago

1.2.14

9 months ago

1.2.13

9 months ago

1.2.12

10 months ago

1.1.12

10 months ago

1.1.11

10 months ago

1.1.10

10 months ago

1.1.9

10 months ago

1.1.8

10 months ago

1.1.7

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago