Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/templateSettings.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

67 lines (59 sloc)
1.38 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var escape = require('./escape'), | |
reEscape = require('./_reEscape'), | |
reEvaluate = require('./_reEvaluate'), | |
reInterpolate = require('./_reInterpolate'); | |
/** | |
* By default, the template delimiters used by lodash are like those in | |
* embedded Ruby (ERB) as well as ES2015 template strings. Change the | |
* following template settings to use alternative delimiters. | |
* | |
* @static | |
* @memberOf _ | |
* @type {Object} | |
*/ | |
var templateSettings = { | |
/** | |
* Used to detect `data` property values to be HTML-escaped. | |
* | |
* @memberOf _.templateSettings | |
* @type {RegExp} | |
*/ | |
'escape': reEscape, | |
/** | |
* Used to detect code to be evaluated. | |
* | |
* @memberOf _.templateSettings | |
* @type {RegExp} | |
*/ | |
'evaluate': reEvaluate, | |
/** | |
* Used to detect `data` property values to inject. | |
* | |
* @memberOf _.templateSettings | |
* @type {RegExp} | |
*/ | |
'interpolate': reInterpolate, | |
/** | |
* Used to reference the data object in the template text. | |
* | |
* @memberOf _.templateSettings | |
* @type {string} | |
*/ | |
'variable': '', | |
/** | |
* Used to import variables into the compiled template. | |
* | |
* @memberOf _.templateSettings | |
* @type {Object} | |
*/ | |
'imports': { | |
/** | |
* A reference to the `lodash` function. | |
* | |
* @memberOf _.templateSettings.imports | |
* @type {Function} | |
*/ | |
'_': { 'escape': escape } | |
} | |
}; | |
module.exports = templateSettings; |