Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
loadSith(id, position) {
transaction(() => {
if (!this.siths[position]) {
const sith = new Sith(this, id);
this.siths[position] = sith;
}
});
}
}