projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ae5c2b0f32297f8fd04a40da71ed18c30d22b89a
[platform/framework/web/crosswalk-tizen.git]
/
1
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
module.exports = toString;
12
13