web 3d图形渲染器
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.

12 lines
473 B

  1. var requireObjectCoercible = require('../internals/require-object-coercible');
  2. var quot = /"/g;
  3. // B.2.3.2.1 CreateHTML(string, tag, attribute, value)
  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. };