2.1.1 • Published 5 years ago

immutable-component v2.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

immutable-component

immutable-component to make state immutable

Usage

this.setState({
    'a.b': 1
})
// or 
this.setState(prevState => {
    prevState.a.b = 1
})

// Either return a new value *or* modify the draft
this.setState(prevState => {
    // prevState.a.b.c = 1
    return { a: { b: 1 } }
})
2.1.1

5 years ago

2.1.0

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.0

6 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago