cattr-app/frontend-application

View on GitHub
app/core/services/store.service.js

Summary

Maintainability
A
0 mins
Test Coverage
export default class StoreService {
    storeNs = undefined;

    constructor(context) {
        this.context = context;
    }

    getStoreName(caller) {
        return `${this.storeNs}/${caller}`;
    }
}