mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
13 lines
225 B
JavaScript
Vendored
13 lines
225 B
JavaScript
Vendored
var noCase = require('no-case')
|
|
|
|
/**
|
|
* Param case a string.
|
|
*
|
|
* @param {string} value
|
|
* @param {string} [locale]
|
|
* @return {string}
|
|
*/
|
|
module.exports = function (value, locale) {
|
|
return noCase(value, locale, '-')
|
|
}
|