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.

create-html.js 453B

123456789101112
  1. var requireObjectCoercible = require('../internals/require-object-coercible');
  2. var quot = /"/g;
  3. // `CreateHTML` abstract operation
  4. // https://tc39.es/ecma262/#sec-createhtml
  5. module.exports = function (string, tag, attribute, value) {
  6. var S = String(requireObjectCoercible(string));
  7. var p1 = '<' + tag;
  8. if (attribute !== '') p1 += ' ' + attribute + '="' + String(value).replace(quot, '&quot;') + '"';
  9. return p1 + '>' + S + '</' + tag + '>';
  10. };