var path = require('path')
function has(workSpace, callback, fileName) {
    var textfile = require('textfile')
    textfile.read(path.join(workSpace, fileName?fileName:'mas.js'), 'string', data => {
        if(typeof callback === 'function') {
            callback(!!data)
        }
    })
}
module.exports = has