blob: e8e02409c3c49d8471ef009a05daf7ac81e8d6bd [file] [log] [blame]
"use strict";
var str = "foo";
module.exports = function () {
if (typeof str.repeat !== "function") return false;
return str.repeat(2) === "foofoo";
};