Skip to content

Commit 8a12551

Browse files
committed
Update artifacts
1 parent 0779ad4 commit 8a12551

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

array/base/to-inserted-at/assign.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
778778
<div class='footer quiet pad2 space-top1 center small'>
779779
Code coverage generated by
780780
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
781-
at 2025-04-24T19:11:20.302Z
781+
at 2025-04-25T10:35:30.027Z
782782
</div>
783783
<script src="../../../../prettify.js"></script>
784784
<script>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[368,368,100,31,31,100,5,5,100,368,368,100,"2153a1f07a7e1c0aeee0e69428a1b6b7f8650e1b","2025-04-25 00:40:15 +0530"]
1+
[368,368,100,31,31,100,5,5,100,368,368,100,"341eb6648b8779df242879362f11ad88118cbda3","2025-04-25 16:02:23 +0530"]

array/base/to-inserted-at/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h1><a href="../../../../index.html">All files</a> array/base/to-inserted-at/lib
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2025-04-24T19:11:20.302Z
134+
at 2025-04-25T10:35:30.027Z
135135
</div>
136136
<script src="../../../../prettify.js"></script>
137137
<script>

array/base/to-inserted-at/index.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,23 +217,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
217217
* @module @stdlib/array/base/to-inserted-at
218218
*
219219
* @example
220-
* var array2InsertedAt = require( '@stdlib/array/base/to-inserted-at' );
220+
* var toInsertedAt = require( '@stdlib/array/base/to-inserted-at' );
221221
*
222222
* var x = [ 1, 2, 3, 4 ];
223223
*
224-
* var v = array2InsertedAt( x, 0, 5 );
224+
* var v = toInsertedAt( x, 0, 5 );
225225
* // returns [ 5, 1, 2, 3, 4 ]
226226
*
227-
* v = array2InsertedAt( x, -2, -1 );
227+
* v = toInsertedAt( x, -2, -1 );
228228
* // returns [ 1, 2, 3, -1, 4 ]
229229
*
230230
* @example
231-
* var array2InsertedAt = require( '@stdlib/array/base/to-inserted-at' );
231+
* var toInsertedAt = require( '@stdlib/array/base/to-inserted-at' );
232232
*
233233
* var x = [ 1, 2, 3, 4 ];
234234
*
235235
* var out = [ 0, 0, 0, 0 ];
236-
* var arr = array2InsertedAt.assign( x, 0, 5, out, 1, 0 );
236+
* var arr = toInsertedAt.assign( x, 0, 5, out, 1, 0 );
237237
* // returns [ 5, 1, 2, 3, 4 ]
238238
*
239239
* var bool = ( arr === out );
@@ -262,7 +262,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
262262
<div class='footer quiet pad2 space-top1 center small'>
263263
Code coverage generated by
264264
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
265-
at 2025-04-24T19:11:20.302Z
265+
at 2025-04-25T10:35:30.027Z
266266
</div>
267267
<script src="../../../../prettify.js"></script>
268268
<script>

array/base/to-inserted-at/main.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,16 +242,16 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
242242
* @example
243243
* var x = [ 1, 2, 3, 4 ];
244244
*
245-
* var v = array2InsertedAt( x, 0, 5 );
245+
* var v = toInsertedAt( x, 0, 5 );
246246
* // returns [ 5, 1, 2, 3, 4 ]
247247
*
248-
* v = array2InsertedAt( x, 1, 6 );
248+
* v = toInsertedAt( x, 1, 6 );
249249
* // returns [ 1, 6, 2, 3, 4 ]
250250
*
251-
* v = array2InsertedAt( x, -2, 7 );
251+
* v = toInsertedAt( x, -2, 7 );
252252
* // returns [ 1, 2, 7, 3, 4 ]
253253
*/
254-
function array2InsertedAt( x, index, value ) {
254+
function toInsertedAt( x, index, value ) {
255255
var out;
256256
&nbsp;
257257
index = normalizeIndex( index, x.length-1 );
@@ -266,15 +266,15 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
266266
&nbsp;
267267
// EXPORTS //
268268
&nbsp;
269-
module.exports = array2InsertedAt;
269+
module.exports = toInsertedAt;
270270
&nbsp;</pre></td></tr></table></pre>
271271

272272
<div class='push'></div><!-- for sticky footer -->
273273
</div><!-- /wrapper -->
274274
<div class='footer quiet pad2 space-top1 center small'>
275275
Code coverage generated by
276276
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
277-
at 2025-04-24T19:11:20.302Z
277+
at 2025-04-25T10:35:30.027Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

0 commit comments

Comments
 (0)