maestro-server/analytics-front

View on GitHub
app/core/repositories/transforms/activeFormat.js

Summary

Maintainability
A
0 mins
Test Coverage
C
71%
'use strict';

module.exports = {

    active (mode = 'strict') {
        if(mode === 'all')
            return {};

        return {active: true};
    },

    desactive (mode = 'strict') {
        if(mode === 'all')
            return {};

        return {active: false};
    }
};