f7b8750f0fd8beae707d821031463fabd849c756
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 var str = 'foo';
4
5 module.exports = function () {
6         if (typeof str.repeat !== 'function') return false;
7         return (str.repeat(2) === 'foofoo');
8 };