a0556f196e9afaf84d5f3701e6a1e7f03679a11c
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 var str = 'razdwatrzy';
4
5 module.exports = function () {
6         if (typeof str.startsWith !== 'function') return false;
7         return ((str.startsWith('trzy') === false) &&
8                 (str.startsWith('raz') === true));
9 };