frontend/.pnpm-store/v3/files/75/53b3e61410d5272aab8113a3cfcc1dff7ea0fd7bb48ffeff6f2dc1baa55c0b25b7c9093cae5b37eae26233a630afe07853492abd79050185cfc9fb50364252

9 lines
156 B
Plaintext

"use strict";
var str = "foo";
module.exports = function () {
if (typeof str.repeat !== "function") return false;
return str.repeat(2) === "foofoo";
};