mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-19 08:19:15 +00:00
feat(11ty): remove unnecessary spread
This commit is contained in:
parent
08d48f1a24
commit
7d837dcf1e
10
.eleventy.js
10
.eleventy.js
@ -23,26 +23,24 @@ module.exports = function (config) {
|
||||
|
||||
// Add collections here
|
||||
config.addCollection('definitions', collection => {
|
||||
return [
|
||||
...collection
|
||||
return collection
|
||||
.getFilteredByGlob('./11ty/definitions/*.md')
|
||||
.sort((a, b) => {
|
||||
// `toLowerCase()` is just a safety measure, slugs should be lower case anyway
|
||||
// `localeCompare()` is super cool: http://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare
|
||||
return a.data.slug.toLowerCase().localeCompare(b.data.slug.toLowerCase())
|
||||
})]
|
||||
})
|
||||
})
|
||||
|
||||
config.addCollection('definedWords', collection => {
|
||||
return [
|
||||
...collection
|
||||
return collection
|
||||
.getFilteredByGlob('./11ty/definitions/*.md')
|
||||
.filter(word => word.data.defined)
|
||||
.sort((a, b) => {
|
||||
// `toLowerCase()` is just a safety measure, slugs should be lower case anyway
|
||||
// `localeCompare()` is super cool: http://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare
|
||||
return a.data.slug.toLowerCase().localeCompare(b.data.slug.toLowerCase())
|
||||
})]
|
||||
})
|
||||
})
|
||||
|
||||
// You can return your Config object (optional).
|
||||
|
Loading…
x
Reference in New Issue
Block a user