source: imaps-frontend/node_modules/lodash-es/_escapeHtmlChar.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 477 bytes
RevLine 
[d565449]1import basePropertyOf from './_basePropertyOf.js';
2
3/** Used to map characters to HTML entities. */
4var htmlEscapes = {
5 '&': '&amp;',
6 '<': '&lt;',
7 '>': '&gt;',
8 '"': '&quot;',
9 "'": '&#39;'
10};
11
12/**
13 * Used by `_.escape` to convert characters to HTML entities.
14 *
15 * @private
16 * @param {string} chr The matched character to escape.
17 * @returns {string} Returns the escaped character.
18 */
19var escapeHtmlChar = basePropertyOf(htmlEscapes);
20
21export default escapeHtmlChar;
Note: See TracBrowser for help on using the repository browser.