mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
add some packages
This commit is contained in:
19
node_modules/core-js/modules/_string-html.js
generated
vendored
Normal file
19
node_modules/core-js/modules/_string-html.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
var $export = require('./_export');
|
||||
var fails = require('./_fails');
|
||||
var defined = require('./_defined');
|
||||
var quot = /"/g;
|
||||
// B.2.3.2.1 CreateHTML(string, tag, attribute, value)
|
||||
var createHTML = function (string, tag, attribute, value) {
|
||||
var S = String(defined(string));
|
||||
var p1 = '<' + tag;
|
||||
if (attribute !== '') p1 += ' ' + attribute + '="' + String(value).replace(quot, '"') + '"';
|
||||
return p1 + '>' + S + '</' + tag + '>';
|
||||
};
|
||||
module.exports = function (NAME, exec) {
|
||||
var O = {};
|
||||
O[NAME] = exec(createHTML);
|
||||
$export($export.P + $export.F * fails(function () {
|
||||
var test = ''[NAME]('"');
|
||||
return test !== test.toLowerCase() || test.split('"').length > 3;
|
||||
}), 'String', O);
|
||||
};
|
Reference in New Issue
Block a user