Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

string-trim-forced.js 423B

123456789101112
  1. var fails = require('../internals/fails');
  2. var whitespaces = require('../internals/whitespaces');
  3. var non = '\u200B\u0085\u180E';
  4. // check that a method works with the correct list
  5. // of whitespaces and has a correct name
  6. module.exports = function (METHOD_NAME) {
  7. return fails(function () {
  8. return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;
  9. });
  10. };