|
476 | 476 | ],
|
477 | 477 | "documentation": [
|
478 | 478 | {
|
479 |
| - "text": "Combines two or more arrays.\r\nThis method returns a new array without modifying any existing arrays.", |
| 479 | + "text": "Combines two or more arrays.\nThis method returns a new array without modifying any existing arrays.", |
480 | 480 | "kind": "text"
|
481 | 481 | }
|
482 | 482 | ],
|
|
1047 | 1047 | "kind": "space"
|
1048 | 1048 | },
|
1049 | 1049 | {
|
1050 |
| - "text": "A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array.", |
| 1050 | + "text": "A function that accepts up to three arguments. The every method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value false, or until the end of the array.", |
1051 | 1051 | "kind": "text"
|
1052 | 1052 | }
|
1053 | 1053 | ]
|
|
1064 | 1064 | "kind": "space"
|
1065 | 1065 | },
|
1066 | 1066 | {
|
1067 |
| - "text": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.", |
| 1067 | + "text": "An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.", |
1068 | 1068 | "kind": "text"
|
1069 | 1069 | }
|
1070 | 1070 | ]
|
|
1081 | 1081 | "kind": "space"
|
1082 | 1082 | },
|
1083 | 1083 | {
|
1084 |
| - "text": "A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array.", |
| 1084 | + "text": "A function that accepts up to three arguments. The every method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value false, or until the end of the array.", |
1085 | 1085 | "kind": "text"
|
1086 | 1086 | }
|
1087 | 1087 | ]
|
|
1098 | 1098 | "kind": "space"
|
1099 | 1099 | },
|
1100 | 1100 | {
|
1101 |
| - "text": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.", |
| 1101 | + "text": "An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.", |
1102 | 1102 | "kind": "text"
|
1103 | 1103 | }
|
1104 | 1104 | ]
|
|
3001 | 3001 | ],
|
3002 | 3002 | "documentation": [
|
3003 | 3003 | {
|
3004 |
| - "text": "Removes the last element from an array and returns it.\r\nIf the array is empty, undefined is returned and the array is not modified.", |
| 3004 | + "text": "Removes the last element from an array and returns it.\nIf the array is empty, undefined is returned and the array is not modified.", |
3005 | 3005 | "kind": "text"
|
3006 | 3006 | }
|
3007 | 3007 | ]
|
|
4696 | 4696 | ],
|
4697 | 4697 | "documentation": [
|
4698 | 4698 | {
|
4699 |
| - "text": "Reverses the elements in an array in place.\r\nThis method mutates the array and returns a reference to the same array.", |
| 4699 | + "text": "Reverses the elements in an array in place.\nThis method mutates the array and returns a reference to the same array.", |
4700 | 4700 | "kind": "text"
|
4701 | 4701 | }
|
4702 | 4702 | ]
|
|
4786 | 4786 | ],
|
4787 | 4787 | "documentation": [
|
4788 | 4788 | {
|
4789 |
| - "text": "Removes the first element from an array and returns it.\r\nIf the array is empty, undefined is returned and the array is not modified.", |
| 4789 | + "text": "Removes the first element from an array and returns it.\nIf the array is empty, undefined is returned and the array is not modified.", |
4790 | 4790 | "kind": "text"
|
4791 | 4791 | }
|
4792 | 4792 | ]
|
|
4940 | 4940 | ],
|
4941 | 4941 | "documentation": [
|
4942 | 4942 | {
|
4943 |
| - "text": "Returns a copy of a section of an array.\r\nFor both start and end, a negative index can be used to indicate an offset from the end of the array.\r\nFor example, -2 refers to the second to last element of the array.", |
| 4943 | + "text": "Returns a copy of a section of an array.\nFor both start and end, a negative index can be used to indicate an offset from the end of the array.\nFor example, -2 refers to the second to last element of the array.", |
4944 | 4944 | "kind": "text"
|
4945 | 4945 | }
|
4946 | 4946 | ],
|
|
4957 | 4957 | "kind": "space"
|
4958 | 4958 | },
|
4959 | 4959 | {
|
4960 |
| - "text": "The beginning index of the specified portion of the array.\r\nIf start is undefined, then the slice begins at index 0.", |
| 4960 | + "text": "The beginning index of the specified portion of the array.\nIf start is undefined, then the slice begins at index 0.", |
4961 | 4961 | "kind": "text"
|
4962 | 4962 | }
|
4963 | 4963 | ]
|
|
4974 | 4974 | "kind": "space"
|
4975 | 4975 | },
|
4976 | 4976 | {
|
4977 |
| - "text": "The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\r\nIf end is undefined, then the slice extends to the end of the array.", |
| 4977 | + "text": "The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\nIf end is undefined, then the slice extends to the end of the array.", |
4978 | 4978 | "kind": "text"
|
4979 | 4979 | }
|
4980 | 4980 | ]
|
|
5323 | 5323 | "kind": "space"
|
5324 | 5324 | },
|
5325 | 5325 | {
|
5326 |
| - "text": "A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array.", |
| 5326 | + "text": "A function that accepts up to three arguments. The some method calls\nthe predicate function for each element in the array until the predicate returns a value\nwhich is coercible to the Boolean value true, or until the end of the array.", |
5327 | 5327 | "kind": "text"
|
5328 | 5328 | }
|
5329 | 5329 | ]
|
|
5340 | 5340 | "kind": "space"
|
5341 | 5341 | },
|
5342 | 5342 | {
|
5343 |
| - "text": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.", |
| 5343 | + "text": "An object to which the this keyword can refer in the predicate function.\nIf thisArg is omitted, undefined is used as the this value.", |
5344 | 5344 | "kind": "text"
|
5345 | 5345 | }
|
5346 | 5346 | ]
|
|
5616 | 5616 | ],
|
5617 | 5617 | "documentation": [
|
5618 | 5618 | {
|
5619 |
| - "text": "Sorts an array in place.\r\nThis method mutates the array and returns a reference to the same array.", |
| 5619 | + "text": "Sorts an array in place.\nThis method mutates the array and returns a reference to the same array.", |
5620 | 5620 | "kind": "text"
|
5621 | 5621 | }
|
5622 | 5622 | ],
|
|
5633 | 5633 | "kind": "space"
|
5634 | 5634 | },
|
5635 | 5635 | {
|
5636 |
| - "text": "Function used to determine the order of the elements. It is expected to return\r\na negative value if the first argument is less than the second argument, zero if they're equal, and a positive\r\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\r\n```ts\r\n[11,2,22,1].sort((a, b) => a - b)\r\n```", |
| 5636 | + "text": "Function used to determine the order of the elements. It is expected to return\na negative value if the first argument is less than the second argument, zero if they're equal, and a positive\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\n```ts\n[11,2,22,1].sort((a, b) => a - b)\n```", |
5637 | 5637 | "kind": "text"
|
5638 | 5638 | }
|
5639 | 5639 | ]
|
|
0 commit comments