function substrDate(str){ return str.substring(0,10) } function indexOf(arr, value) { if (arr.indexOf(value) < 0) { return false; } else { return true; } } module.exports = { substrDate: substrDate, indexOf:indexOf }