mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
8 lines
156 B
JavaScript
Vendored
8 lines
156 B
JavaScript
Vendored
"use strict";
|
|
|
|
var str = "foo";
|
|
|
|
module.exports = function () {
|
|
if (typeof str.repeat !== "function") return false;
|
|
return str.repeat(2) === "foofoo";
|
|
};
|