projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c15c4ea295e0c890c3ed156b643a0424a40b0678
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
require('string.prototype.endswith');
4
5
exports.stringAfter = function(formattedString) {
6
if (formattedString.endsWith('\n')) {
7
return formattedString;
8
}
9
10
return formattedString + '\n';
11
};