JSPM

@extra-array/rotate-update.min

2.9.48
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9
  • Score
    100M100P100Q126035F
  • License MIT

Rotates values in array.

Package Exports

  • @extra-array/rotate-update.min

Readme

Rotates values in array. 🏃 📼 📦 🌔 📒

Alternatives: rotate, rotate$.
Similar: [repeat], [cycle], rotate, [reverse].
This is part of package extra-array.

This is browserified, minified version of @extra-array/rotate-update.
It is exported as global variable array_rotate$.
CDN: unpkg, jsDelivr.

array.rotate$(x, [n]);
// x: an array (updated)
// n: rotate amount (+ve: left, -ve: right)
// --> x
const array = require('extra-array');

var x = [1, 2, 3, 4];
array.rotate$(x, 1);
// [ 2, 3, 4, 1 ]

x;
// [ 2, 3, 4, 1 ]

var x = [1, 2, 3, 4];
array.rotate$(x, 2);
// [ 3, 4, 1, 2 ]

var x = [1, 2, 3, 4];
array.rotate$(x, -1);
// [ 4, 1, 2, 3 ]

references