/* */ var $def = require('./$.def'), toIObject = require('./$.to-iobject'), toLength = require('./$.to-length'); $def($def.S, 'String', {raw: function raw(callSite) { var tpl = toIObject(callSite.raw), len = toLength(tpl.length), sln = arguments.length, res = [], i = 0; while (len > i) { res.push(String(tpl[i++])); if (i < sln) res.push(String(arguments[i])); } return res.join(''); }});