projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c28b89af6ae9d612b2a3943193b642bf7d84c96f
[platform/framework/web/crosswalk-tizen.git]
/
1
define(function () {
2
3
/**
4
* Typecast a value to a String, using an empty string value for null or
5
* undefined.
6
*/
7
function toString(val){
8
return val == null ? '' : val.toString();
9
}
10
11
return toString;
12
13
});