diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
commit | cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch) | |
tree | 92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/lodash/toUpper.js | |
parent | 3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff) |
remove node_modules
Diffstat (limited to 'node_modules/lodash/toUpper.js')
-rw-r--r-- | node_modules/lodash/toUpper.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/node_modules/lodash/toUpper.js b/node_modules/lodash/toUpper.js deleted file mode 100644 index b3648e8bf..000000000 --- a/node_modules/lodash/toUpper.js +++ /dev/null @@ -1,28 +0,0 @@ -var toString = require('./toString'); - -/** - * Converts `string`, as a whole, to upper case just like - * [String#toUpperCase](https://mdn.io/toUpperCase). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the upper cased string. - * @example - * - * _.toUpper('--foo-bar--'); - * // => '--FOO-BAR--' - * - * _.toUpper('fooBar'); - * // => 'FOOBAR' - * - * _.toUpper('__foo_bar__'); - * // => '__FOO_BAR__' - */ -function toUpper(value) { - return toString(value).toUpperCase(); -} - -module.exports = toUpper; |