UNPKG

ember-introjs

Version:
17 lines (10 loc) 238 B
/** * Returns last element of array. */ function last(arr){ if (arr == null || arr.length < 1) { return undefined; } return arr[arr.length - 1]; } module.exports = last;