We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e2652a commit a58dba8Copy full SHA for a58dba8
functions/strings/htmlentities.js
@@ -9,6 +9,8 @@ function htmlentities (string, quote_style) {
9
// - depends on: get_html_translation_table
10
// * example 1: htmlentities('Kevin & van Zonneveld');
11
// * returns 1: 'Kevin & van Zonneveld'
12
+ // * example 2: htmlentities("foo'bar","ENT_QUOTES");
13
+ // * returns 2: 'foo'bar'
14
15
var histogram = {}, symbol = '', tmp_str = '', entity = '';
16
tmp_str = string.toString();
0 commit comments