Files: 2d3be0b71fb114fe7815f6d65ae8c25ba8337ae4 / lib / normalize-channel.js
202 bytesRaw
1 | module.exports = function (channel) { |
2 | if (typeof channel === 'string') { |
3 | channel = channel.replace(/\s/g, '') |
4 | if (channel.length > 0 && channel.length < 30) { |
5 | return channel |
6 | } |
7 | } |
8 | } |
9 |
Built with git-ssb-web