From 291803c31f829fe0d32bb3207bc11def95a7408c Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 20:05:50 +0100 Subject: Urađena test aplikacija. Povezan front i back. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Front/node_modules/lodash/templateSettings.js | 67 ++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/templateSettings.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/templateSettings.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/templateSettings.js b/sandbox/testAppNevena/Front/node_modules/lodash/templateSettings.js new file mode 100644 index 00000000..5aa5924f --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/lodash/templateSettings.js @@ -0,0 +1,67 @@ +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 v1.2.3