aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_string-html.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/_string-html.js')
-rw-r--r--node_modules/core-js/modules/_string-html.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/node_modules/core-js/modules/_string-html.js b/node_modules/core-js/modules/_string-html.js
index 95daf8124..1dcc95bcd 100644
--- a/node_modules/core-js/modules/_string-html.js
+++ b/node_modules/core-js/modules/_string-html.js
@@ -1,19 +1,19 @@
-var $export = require('./_export')
- , fails = require('./_fails')
- , defined = require('./_defined')
- , quot = /"/g;
+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))
- , p1 = '<' + tag;
- if(attribute !== '')p1 += ' ' + attribute + '="' + String(value).replace(quot, '&quot;') + '"';
+var createHTML = function (string, tag, attribute, value) {
+ var S = String(defined(string));
+ var p1 = '<' + tag;
+ if (attribute !== '') p1 += ' ' + attribute + '="' + String(value).replace(quot, '&quot;') + '"';
return p1 + '>' + S + '</' + tag + '>';
};
-module.exports = function(NAME, exec){
+module.exports = function (NAME, exec) {
var O = {};
O[NAME] = exec(createHTML);
- $export($export.P + $export.F * fails(function(){
+ $export($export.P + $export.F * fails(function () {
var test = ''[NAME]('"');
return test !== test.toLowerCase() || test.split('"').length > 3;
}), 'String', O);
-}; \ No newline at end of file
+};