main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
443 bytes
|
Line | |
---|
1 | var invoker =
|
---|
2 | /*#__PURE__*/
|
---|
3 | require("./invoker.js");
|
---|
4 | /**
|
---|
5 | * The upper case version of a string.
|
---|
6 | *
|
---|
7 | * @func
|
---|
8 | * @memberOf R
|
---|
9 | * @since v0.9.0
|
---|
10 | * @category String
|
---|
11 | * @sig String -> String
|
---|
12 | * @param {String} str The string to upper case.
|
---|
13 | * @return {String} The upper case version of `str`.
|
---|
14 | * @see R.toLower
|
---|
15 | * @example
|
---|
16 | *
|
---|
17 | * R.toUpper('abc'); //=> 'ABC'
|
---|
18 | */
|
---|
19 |
|
---|
20 |
|
---|
21 | var toUpper =
|
---|
22 | /*#__PURE__*/
|
---|
23 | invoker(0, 'toUpperCase');
|
---|
24 | module.exports = toUpper; |
---|
Note:
See
TracBrowser
for help on using the repository browser.