blob: 6f7d4b719e218e2ff76d56fba2d128b084bb6bf4 [file] [log] [blame]
'use strict';
var str = 'razdwatrzy';
module.exports = function () {
if (typeof str.contains !== 'function') return false;
return ((str.contains('dwa') === true) && (str.contains('foo') === false));
};