projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
63ff2a572a353b8b8c1fa168e5bd7137d2987cd5
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
module.exports = function () {
4
var from = Array.from, arr, result;
5
if (typeof from !== 'function') return false;
6
arr = ['raz', 'dwa'];
7
result = from(arr);
8
return Boolean(result && (result !== arr) && (result[1] === 'dwa'));
9
};