mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
'use strict';
|
|
|
|
var str = 'foo';
|
|
|
|
module.exports = function () {
|
|
if (typeof str.repeat !== 'function') return false;
|
|
return (str.repeat(2) === 'foofoo');
|
|
};
|