Gathering detailed insights and metrics for dashify-unicode
Gathering detailed insights and metrics for dashify-unicode
npm install dashify-unicode
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,214
Last Day
4
Last Week
11
Last Month
23
Last Year
118
7 Commits
2 Watching
1 Branches
2 Contributors
Minified
Minified + Gzipped
Latest Version
1.0.2
Package Id
dashify-unicode@1.0.2
Unpacked Size
3.81 kB
Size
1.94 kB
File Count
4
NPM Version
6.13.4
Node Version
12.14.0
Cumulative downloads
Total Downloads
Last day
300%
4
Compared to previous day
Last week
175%
11
Compared to previous week
Last month
666.7%
23
Compared to previous month
Last year
3.5%
118
Compared to previous year
No dependencies detected.
Convert a camelcase or space-separated string to a dash-separated string.
a Dashifier for JavaScript that Accepts Unicode Characters ( not just ASCII chars )
It is similar to dashify package, but it can also convert other characters in addition to ASCII chars.
1$ npm install dashify --save
1const dashify = require("dashify"); 2const dashifyUnicode = require("dashify-unicode"); 3 4dashify("سلام، خوبی !?"); 5//=> "" 6dashifyUnicode("سلام، خوبی !?"); 7//=> "سلام،-خوبی" 8 9 10dashify("Hello دنیا !"); 11//=> "hello" 12dashifyUnicode("Hello دنیا !"); 13//=> "hello-دنیا" 14 15/*** They are similar in English ***/ 16dashify('fooBar'); 17//=> 'foo-bar' 18dashify('fooBarBaz'); 19//=> 'foo-bar-baz' 20dashify('foo bar'); 21//=> 'foo-bar' 22dashify('foo barBaz'); 23//=> 'foo-bar-baz' 24dashify('foo barBaz quux'); 25//=> 'foo-bar-baz-quux' 26 27dashifyUnicode('fooBar'); 28//=> 'foo-bar' 29dashifyUnicode('fooBarBaz'); 30//=> 'foo-bar-baz' 31dashifyUnicode('foo bar'); 32//=> 'foo-bar' 33dashifyUnicode('foo barBaz'); 34//=> 'foo-bar-baz' 35dashifyUnicode('foo barBaz quux'); 36//=> 'foo-bar-baz-quux'
Thanks to @jonschlinkert
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/7 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More