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-html-forced.js 322B

12345678910
  1. var fails = require('../internals/fails');
  2. // check the existence of a method, lowercase
  3. // of a tag and escaping quotes in arguments
  4. module.exports = function (METHOD_NAME) {
  5. return fails(function () {
  6. var test = ''[METHOD_NAME]('"');
  7. return test !== test.toLowerCase() || test.split('"').length > 3;
  8. });
  9. };