From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- alarm/node_modules/lodash/templateSettings.js | 67 --------------------------- 1 file changed, 67 deletions(-) delete mode 100644 alarm/node_modules/lodash/templateSettings.js (limited to 'alarm/node_modules/lodash/templateSettings.js') diff --git a/alarm/node_modules/lodash/templateSettings.js b/alarm/node_modules/lodash/templateSettings.js deleted file mode 100644 index 5aa5924..0000000 --- a/alarm/node_modules/lodash/templateSettings.js +++ /dev/null @@ -1,67 +0,0 @@ -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; -- cgit