combinations-generator:查找组合使用 es6 生成器

时间:2024-07-22 06:14:06
【文件属性】:

文件名称:combinations-generator:查找组合使用 es6 生成器

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-22 06:14:06

JavaScript

组合生成器 数组中的返回组合使用 es6 生成器。 安装 npm install combinations-generator 要使用此包,您必须运行 node 0.11 以获取生成器支持,并且必须使用--harmony标志运行 node。 例子 var comb = require ( "combinations-generator" ) var array = [ "a" , "b" , "c" ] var iterator = comb ( array , 2 ) ; for ( var item of iterator ) { console . log ( item ) ; } 输出: [ 'a' , 'b' ] [ 'a' , 'c' ] [ 'b' , 'c' ] 如果你想在浏览器中使用它,那么你应该使用 。 学分 (c) 2015 exromany。 麻省理


【文件预览】:
combinations-generator-master
----LICENSE(1KB)
----test()
--------test.js(1KB)
----README.md(662B)
----.editorconfig(214B)
----.gitignore(587B)
----index.js(692B)
----package.json(653B)

网友评论