9 lines
156 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:23:08 +08:00
"use strict";
var str = "foo";
module.exports = function () {
if (typeof str.repeat !== "function") return false;
return str.repeat(2) === "foofoo";
};