/**
* Cast all strings to ints in an array.
* @exports {Function} that takes a string array and then casts
* all its entries to integers (base 10) using the parseInt function.
*/module.exports = function(arr_) {
return arr_.map(function(elem) {
returnparseInt(elem, 10);
});
};