Gottwik/Enduro

View on GitHub
scaffolding/test_juicebox/app/abstractors/tweet.js

Summary

Maintainability
A
0 mins
Test Coverage
//    placeholder abstractor

const abstractor = function () {}

abstractor.prototype.init = function (context) {
    return new Promise(function (resolve, reject) {

        // initialize abstractor
        resolve()
    })
}

abstractor.prototype.abstract = function (context) {
    return new Promise(function (resolve, reject) {

        // abstract directive
        return resolve()

    })
}

module.exports = new abstractor()