mirror of
https://github.com/Viren070/stremio-addons-list.git
synced 2025-12-01 23:19:02 +01:00
982ccb65df
Not all non-alphanumeric characters are added to the charmap yet but this should fix the current issue with the Easynews addon.
8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
const _slug = require('slug')
|
|
|
|
_slug.charmap['+'] = 'plus'
|
|
|
|
const slug = (string, opts) => _slug(string, opts)
|
|
|
|
module.exports = slug
|