文件名称:taxonomist:根据对象属性将对象分配给类别
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-23 12:36:40
JavaScript
分类学家.js 根据对象属性将对象分组。 用法 var arr = [ { fields : { tags : [ 'foo' , 'bar' ] } } , { fields : { tags : [ 'baz' ] } } , { fields : { tags : 'bar' } } ] ; // categorise by property taxonomist ( arr , function ( obj , i ) { return obj . fields . tags ; } ) ; /* { * foo: [ arr[0] ], * bar: [ arr[0], arr[2] ], * baz: [ arr[1] ] * } */ // modify the value used to perform the categorisa
【文件预览】:
taxonomist-master
----.gitignore(48B)
----README.md(2KB)
----test()
--------index.js(2KB)
----LICENSE(1KB)
----.jshintrc(273B)
----package.json(767B)
----index.js(803B)
----.travis.yml(174B)
----.editorconfig(147B)