Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 219B

123456789101112
  1. /**
  2. * Escape regexp special characters in `str`.
  3. *
  4. * @param {String} str
  5. * @return {String}
  6. * @api public
  7. */
  8. module.exports = function(str){
  9. return String(str).replace(/([.*+?=^!:${}()|[\]\/\\])/g, '\\$1');
  10. };