Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
arraypermutation-node
Advanced tools
make permutation of a array given.
This method permutate the item in a array given
$ npm install arraypermutation-node
const permutate = require('arraypermutation-node')
permutate.right([1,2]) // -> [2,1]
permutate.right([1,2,3,4,5,6]) // -> [6,1,2,3,4,5]
permutate.left([1,2]) // -> [2,1]
permutate.left([1,2,3,4])// -> [2,3,4,1]
permutate.left([1]) // [1]
permutate.right([1]) // [1]
The param is the right what will be permutated to right. The array is passed by reference.
The param is the left what will be permutated to left. The array is passed by reference.
FAQs
permutate a array given
We found that arraypermutation-node 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.