|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
290 bytes
|
| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * This method returns an empty string.
|
|---|
| 3 | *
|
|---|
| 4 | * @static
|
|---|
| 5 | * @memberOf _
|
|---|
| 6 | * @since 4.13.0
|
|---|
| 7 | * @category Util
|
|---|
| 8 | * @returns {string} Returns the empty string.
|
|---|
| 9 | * @example
|
|---|
| 10 | *
|
|---|
| 11 | * _.times(2, _.stubString);
|
|---|
| 12 | * // => ['', '']
|
|---|
| 13 | */
|
|---|
| 14 | function stubString() {
|
|---|
| 15 | return '';
|
|---|
| 16 | }
|
|---|
| 17 |
|
|---|
| 18 | module.exports = stubString;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.