dotfiles/.vscode/extensions/vscodevim.vim-0.2.0/node_modules/lodash/_escapeHtmlChar.js

23 lines
495 B
JavaScript
Raw Normal View History

2016-09-11 09:29:13 +01:00
var basePropertyOf = require('./_basePropertyOf');
/** Used to map characters to HTML entities. */
var htmlEscapes = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#39;',
'`': '&#96;'
};
/**
* Used by `_.escape` to convert characters to HTML entities.
*
* @private
* @param {string} chr The matched character to escape.
* @returns {string} Returns the escaped character.
*/
var escapeHtmlChar = basePropertyOf(htmlEscapes);
module.exports = escapeHtmlChar;