
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Switch an array item's index and get a new sorted array.
$ npm install move-sort --save
or include it in a <script>
tag, hosted by unpkg.
<script src="//unpkg.com/move-sort" />
import moveSort from 'move-sort'
const items = ['a', 'b', 'c', 'd', 'e']
const sortedItems = moveSort(items, 4, 0)
console.log(sortedItems) // returns ["e", "a", "b", "c", "d"]
Note: move-sort
always returns a new array, and does not mutate the original array you pass into it.
Type: T extends any[]
The original array you want to generate a sorted array for.
Type: number
The index of the inital element in the array you want to move.
Type: number
The target index of the inital element in the array you want to move it to.
The start and end index arguments are clamped to the bounds of the items
array. Indexes less than 0
will become 0
and indexes greater than (items.length - 1)
will become (items.length - 1)
.
# To run the tests
$ pnpm test
# or
$ pnpm run test:watch
# To publish the dist files
$ pnpm run build
MIT © Collin Henderson
FAQs
> Switch an array item's index and get a new sorted array.
We found that move-sort demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.