1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +00:00
Files
mywebsite/node_modules/es5-ext/string/#/repeat/is-implemented.js

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');
};