Не понимаю, как это сделать, очень много всего попробывал
import { getUser } from './db.js';
getUser(1).then(console.log).catch(e => console.log(e.message));
getUser().then(console.log).catch(e => console.log(e.message));
import { loadData } from './storage.js';
export const getUser = (userId) => new Promise((resolve, reject) => {
if (userId === undefined) {
reject(new Error("No enemies"));
} else {
resolve(userId);
}
});
export const loadData = () => ({
users: [
{
id: 1,
name: 'Jack',
friends: [ 23, 125 ],
}, {
id: 23,
name: 'Jane',
friends: [ 125 ],
}, {
id: 125,
name: 'Jill',
friends: [ 1 ],
}
]
})