/**
* Created by CCristi on 5/12/16.
*/
'use strict';
module.exports = function() {
if (!/^v[6|8]/.test(process.version)) {
console.warn(`Deepify '${this.name}' is available only with node v6.x or v8.x due to AWS Lambda Runtime limitations`);
this.exit(1);
}
};