blob: a0556f196e9afaf84d5f3701e6a1e7f03679a11c [file] [log] [blame]
'use strict';
var str = 'razdwatrzy';
module.exports = function () {
if (typeof str.startsWith !== 'function') return false;
return ((str.startsWith('trzy') === false) &&
(str.startsWith('raz') === true));
};