add build
This commit is contained in:
12
node_modules/param-case/param-case.js
generated
vendored
Normal file
12
node_modules/param-case/param-case.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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, '-')
|
||||
}
|
Reference in New Issue
Block a user