Current File : //usr/lib/node_modules/bower/lib/node_modules/mout/src/array/last.js
define(function () {

    /**
     * Returns last element of array.
     */
    function last(arr){
        if (arr == null || arr.length < 1) {
            return undefined;
        }

        return arr[arr.length - 1];
    }

    return last;

});