Files
stremio-addons-list/lib/slug.js
T
Sleeyax 982ccb65df Fix slug sanitization of non-alphanumeric characters
Not all non-alphanumeric characters are added to the charmap yet but this should fix the current issue with the Easynews addon.
2024-10-15 00:19:08 +02:00

8 lines
134 B
JavaScript

const _slug = require('slug')
_slug.charmap['+'] = 'plus'
const slug = (string, opts) => _slug(string, opts)
module.exports = slug