文件名称:sort-on:在对象属性上对数组排序
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-15 01:41:27
JavaScript
排序 在对象属性上对数组排序 安装 $ npm install sort-on 用法 const sortOn = require ( 'sort-on' ) ; // Sort by an object property sortOn ( [ { x : 'b' } , { x : 'a' } , { x : 'c' } ] , 'x' ) ; //=> [{x: 'a'}, {x: 'b'}, {x: 'c'}] // Sort descending by an object property sortOn ( [ { x : 'b' } , { x : 'a' } , { x : 'c' } ] , '-x' ) ; //=> [{x: 'c'}, {x: 'b'}, {x: 'a'}] // Sort by a nested object property sortOn ( [
【文件预览】:
sort-on-main
----index.test-d.ts(644B)
----.gitattributes(19B)
----.github()
--------workflows()
----test.js(2KB)
----license(1KB)
----index.d.ts(1KB)
----.npmrc(19B)
----.editorconfig(175B)
----.gitignore(23B)
----index.js(1KB)
----readme.md(1KB)
----package.json(656B)