文件名称:get-range:惰性数字范围生成器
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-01 03:01:24
JavaScript
得到范围 惰性数字范围生成器 对迭代很有用。 与Python 3 函数相似。 安装 $ npm install get-range 用法 import getRange from 'get-range' ; for ( const index of getRange ( { end : 4 } ) ) { console . log ( index ) ; } //=> 0 //=> 1 //=> 2 //=> 3 const range = getRange ( { start : 0 , end : 4 , step : 2 } ) ; range . next ( ) . value ; //=> 0 range . next ( ) . value ; //=> 2 console . log ( ... getRange ( { start : 0 , end : - 5 ,
【文件预览】:
get-range-main
----index.test-d.ts(341B)
----.gitattributes(19B)
----.github()
--------workflows()
----test.js(926B)
----license(1KB)
----index.d.ts(689B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitignore(23B)
----index.js(449B)
----readme.md(1KB)
----package.json(736B)