UNPKG

204 BJavaScriptView Raw
1/*
2string:hyphenate
3*/"use strict"
4
5var hyphenate = function(self){
6 return (self + "").replace(/[A-Z]/g, function(match){
7 return '-' + match.toLowerCase()
8 })
9}
10
11module.exports = hyphenate