This commit is contained in:
hatuhn
2019-09-13 09:45:04 +07:00
parent f14a34ba19
commit 558fb07261
16790 changed files with 0 additions and 1642370 deletions

View File

@@ -1,10 +0,0 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(String, "raw", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}

View File

@@ -1,3 +0,0 @@
"use strict";
module.exports = require("./is-implemented")() ? String.raw : require("./shim");

View File

@@ -1,9 +0,0 @@
"use strict";
module.exports = function () {
var raw = String.raw, test;
if (typeof raw !== "function") return false;
test = ["foo\nbar", "marko\n"];
test.raw = ["foo\\nbar", "marko\\n"];
return raw(test, "INSE\nRT") === "foo\\nbarINSE\nRTmarko\\n";
};

View File

@@ -1,14 +0,0 @@
"use strict";
var toPosInt = require("../../number/to-pos-integer")
, validValue = require("../../object/valid-value")
, reduce = Array.prototype.reduce;
module.exports = function (callSite/*, …substitutions*/) {
var args, rawValue = Object(validValue(Object(validValue(callSite)).raw));
if (!toPosInt(rawValue.length)) return "";
args = arguments;
return reduce.call(rawValue, function (str1, str2, i) {
return str1 + String(args[i]) + str2;
});
};