Skip to content

Instantly share code, notes, and snippets.

@davidbarral
Created June 14, 2022 07:53
Show Gist options
  • Save davidbarral/a504caa537dbf6a578228438cab8150d to your computer and use it in GitHub Desktop.
Save davidbarral/a504caa537dbf6a578228438cab8150d to your computer and use it in GitHub Desktop.
DI Pragmatic 1
const userRepo = require("./repos/user.js");
const updateUserPreference = ({ key, value }) => {
// Do stuff and updade the user.
const repo = userRepo();
repo.update(updatedUser);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment