Compare commits
No commits in common. "ee23dc0358677a66b27a20b8d56c4b69782cec9b" and "0c9917fc27c99a1017ee965c45fc89024abc92cd" have entirely different histories.
ee23dc0358
...
0c9917fc27
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "traxxx-utils",
|
||||
"version": "1.3.1",
|
||||
"version": "1.3.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx-utils",
|
||||
"version": "1.3.1",
|
||||
"version": "1.3.0",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.25.7",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx-common",
|
||||
"version": "1.3.1",
|
||||
"version": "1.3.0",
|
||||
"description": "Common utilities for traxxx core and web.",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ const plainCharRegex = /[a-zA-Z0-9]/;
|
|||
const defaultPunctuationRegex = /[.,?!:;&'‘’"“”…()[]{}<>\/*—-]/;
|
||||
const defaultSymbolRegex = /[@$€£#%^+=\\~]/;
|
||||
|
||||
module.exports = function slugify(strings, delimiter = '-', {
|
||||
export default function slugify(strings, delimiter = '-', {
|
||||
limit = 1000,
|
||||
lower = true,
|
||||
encode = false,
|
||||
Loading…
Reference in New Issue