summaryrefslogtreecommitdiff
path: root/examples/with-nanostores/src/store/admins.js
blob: 8a4a6f4d24417c53cbf23902eeb65bea27461728 (plain) (blame)
1
2
3
4
5
6
7
import { computed } from 'nanostores';

import { users } from './users.js';

const admins = computed(users, (list) => list.filter((user) => user.isAdmin));

export { admins };