feat(11ty): remove unnecessary spread

This commit is contained in:
Oscar 2019-11-15 20:09:21 +01:00
parent 08d48f1a24
commit 7d837dcf1e

View File

@ -23,26 +23,24 @@ module.exports = function (config) {
// Add collections here // Add collections here
config.addCollection('definitions', collection => { config.addCollection('definitions', collection => {
return [ return collection
...collection
.getFilteredByGlob('./11ty/definitions/*.md') .getFilteredByGlob('./11ty/definitions/*.md')
.sort((a, b) => { .sort((a, b) => {
// `toLowerCase()` is just a safety measure, slugs should be lower case anyway // `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 // `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()) return a.data.slug.toLowerCase().localeCompare(b.data.slug.toLowerCase())
})] })
}) })
config.addCollection('definedWords', collection => { config.addCollection('definedWords', collection => {
return [ return collection
...collection
.getFilteredByGlob('./11ty/definitions/*.md') .getFilteredByGlob('./11ty/definitions/*.md')
.filter(word => word.data.defined) .filter(word => word.data.defined)
.sort((a, b) => { .sort((a, b) => {
// `toLowerCase()` is just a safety measure, slugs should be lower case anyway // `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 // `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()) return a.data.slug.toLowerCase().localeCompare(b.data.slug.toLowerCase())
})] })
}) })
// You can return your Config object (optional). // You can return your Config object (optional).