]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/escape/escape.js
Release 6.2.2
[Github/sugarcrm.git] / include / javascript / yui3 / build / escape / escape.js
1 /*
2  Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3  Code licensed under the BSD License:
4  http://developer.yahoo.com/yui/license.html
5  version: 3.3.0
6  build: 3167
7  */
8 YUI.add('escape',function(Y){var HTML_CHARS={'&':'&amp;','<':'&lt;','>':'&gt;','"':'&quot;',"'":'&#x27;','/':'&#x2F;','`':'&#x60;'},Escape={html:function(string){return string.replace(/[&<>"'\/`]/g,Escape._htmlReplacer);},regex:function(string){return string.replace(/[\-#$\^*()+\[\]{}|\\,.?\s]/g,'\\$&');},_htmlReplacer:function(match){return HTML_CHARS[match];}};Escape.regexp=Escape.regex;Y.Escape=Escape;},'3.3.0');