aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/string/startCase.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/string/startCase.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/string/startCase.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/string/startCase.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/string/startCase.js
deleted file mode 100644
index 740d48a5..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/string/startCase.js
+++ /dev/null
@@ -1,26 +0,0 @@
-var createCompounder = require('../internal/createCompounder');
-
-/**
- * Converts `string` to [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage).
- *
- * @static
- * @memberOf _
- * @category String
- * @param {string} [string=''] The string to convert.
- * @returns {string} Returns the start cased string.
- * @example
- *
- * _.startCase('--foo-bar');
- * // => 'Foo Bar'
- *
- * _.startCase('fooBar');
- * // => 'Foo Bar'
- *
- * _.startCase('__foo_bar__');
- * // => 'Foo Bar'
- */
-var startCase = createCompounder(function(result, word, index) {
- return result + (index ? ' ' : '') + (word.charAt(0).toUpperCase() + word.slice(1));
-});
-
-module.exports = startCase;