awesome-ipfs/scripts/utils.js
Henrique Dias a89015da98
feat: clean up (a lot) (#247)
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
2019-04-30 17:35:30 +01:00

29 lines
458 B
JavaScript

const sort = (a, b) => {
if (a < b) return -1
if (a > b) return 1
return 0
}
const sortInv = (a, b) => -sort(a, b)
const sortAbc = (a, b) => {
a = a.toLowerCase()
b = b.toLowerCase()
return sort(a, b)
}
const slugify = (text) => text.toString()
.toLowerCase()
.replace(/\s+/g, '-')
.replace(/[^\w-]+/g, '')
.replace(/--+/g, '-')
.replace(/^-+/, '')
.replace(/-+$/, '')
module.exports = {
sort,
sortInv,
sortAbc,
slugify
}