1.1.6 • Published 2 years ago

normalized-data v1.1.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

This library helps to keep normalized data, update collection.

const items = [
    { id: 1, name: 'test1' },
    { id: 2, name: 'test2' }
]

let normalized = Normalize.toData(items);


normalized = normalized.updateOne({id: 2, name: 'Updated name'});
normalized = normalized.removeOne(2);
normalized = normalized.append({id: 3, name: 'test3'});

const list = normalized.toList();
1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago