projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2c8529674d7bc7728b05aab8e6fb5754246cc1c8
[platform/framework/web/crosswalk-tizen.git]
/
1
define(function () {
2
3
/**
4
* Returns last element of array.
5
*/
6
function last(arr){
7
if (arr == null || arr.length < 1) {
8
return undefined;
9
}
10
11
return arr[arr.length - 1];
12
}
13
14
return last;
15
16
});