|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
479 bytes
|
| Line | |
|---|
| 1 | var basePropertyOf = require('./_basePropertyOf');
|
|---|
| 2 |
|
|---|
| 3 | /** Used to map characters to HTML entities. */
|
|---|
| 4 | var htmlEscapes = {
|
|---|
| 5 | '&': '&',
|
|---|
| 6 | '<': '<',
|
|---|
| 7 | '>': '>',
|
|---|
| 8 | '"': '"',
|
|---|
| 9 | "'": '''
|
|---|
| 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 | */
|
|---|
| 19 | var escapeHtmlChar = basePropertyOf(htmlEscapes);
|
|---|
| 20 |
|
|---|
| 21 | module.exports = escapeHtmlChar;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.