From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../Front/node_modules/lodash/camelCase.js | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/camelCase.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/camelCase.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/camelCase.js b/sandbox/testAppNevena/Front/node_modules/lodash/camelCase.js deleted file mode 100644 index d7390def..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/camelCase.js +++ /dev/null @@ -1,29 +0,0 @@ -var capitalize = require('./capitalize'), - createCompounder = require('./_createCompounder'); - -/** - * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the camel cased string. - * @example - * - * _.camelCase('Foo Bar'); - * // => 'fooBar' - * - * _.camelCase('--foo-bar--'); - * // => 'fooBar' - * - * _.camelCase('__FOO_BAR__'); - * // => 'fooBar' - */ -var camelCase = createCompounder(function(result, word, index) { - word = word.toLowerCase(); - return result + (index ? capitalize(word) : word); -}); - -module.exports = camelCase; -- cgit v1.2.3