文件名称:array-move:将数组项移动到其他位置
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-15 01:35:08
JavaScript
阵列移动 将数组项移动到其他位置 安装 $ npm install array-move 用法 const arrayMove = require ( 'array-move' ) ; const input = [ 'a' , 'b' , 'c' ] ; const array1 = arrayMove ( input , 1 , 2 ) ; console . log ( array1 ) ; //=> ['a', 'c', 'b'] const array2 = arrayMove ( input , - 1 , 0 ) ; console . log ( array2 ) ; //=> ['c', 'a', 'b'] const array3 = arrayMove ( input , - 2 , - 3 ) ; console . log ( array3 ) ; //=>
【文件预览】:
array-move-main
----index.test-d.ts(388B)
----.gitattributes(19B)
----.github()
--------workflows()
----test.js(640B)
----license(1KB)
----index.d.ts(1KB)
----.npmrc(19B)
----.editorconfig(175B)
----.gitignore(23B)
----index.js(495B)
----readme.md(1KB)
----package.json(628B)