Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / nodeunit / deps / ejs / lib / utils.js
1
2 /*!
3  * EJS
4  * Copyright(c) 2010 TJ Holowaychuk <tj@vision-media.ca>
5  * MIT Licensed
6  */
7
8 /**
9  * Escape the given string of `html`.
10  *
11  * @param {String} html
12  * @return {String}
13  * @api private
14  */
15
16 exports.escape = function(html){
17   return String(html)
18     .replace(/&(?!\w+;)/g, '&amp;')
19     .replace(/</g, '&lt;')
20     .replace(/>/g, '&gt;')
21     .replace(/"/g, '&quot;');
22 };
23