Ohm-Management - Projektarbeit B-ME
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.

_asciiWords.js 404B

123456789101112131415
  1. /** Used to match words composed of alphanumeric characters. */
  2. var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
  3. /**
  4. * Splits an ASCII `string` into an array of its words.
  5. *
  6. * @private
  7. * @param {string} The string to inspect.
  8. * @returns {Array} Returns the words of `string`.
  9. */
  10. function asciiWords(string) {
  11. return string.match(reAsciiWord) || [];
  12. }
  13. module.exports = asciiWords;