校验是否是短杠拼接且非是开头或者结尾的字符
boolean
isKebabCase('hello-world') // trueisKebabCase('HelloWorld') // falseisKebabCase('hello-world_') // falseisKebabCase('-hello-world-') // falseisKebabCase('hello') // trueisKebabCase('hello--world') // false Copy
isKebabCase('hello-world') // trueisKebabCase('HelloWorld') // falseisKebabCase('hello-world_') // falseisKebabCase('-hello-world-') // falseisKebabCase('hello') // trueisKebabCase('hello--world') // false
校验是否是短杠拼接且非是开头或者结尾的字符