Node-Red configuration
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }