Node-Red configuration
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.js 337B

123456789101112131415161718192021
  1. var clean = require('to-no-case')
  2. /**
  3. * Export.
  4. */
  5. module.exports = toSpaceCase
  6. /**
  7. * Convert a `string` to space case.
  8. *
  9. * @param {String} string
  10. * @return {String}
  11. */
  12. function toSpaceCase(string) {
  13. return clean(string).replace(/[\W_]+(.|$)/g, function (matches, match) {
  14. return match ? ' ' + match : ''
  15. }).trim()
  16. }