projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b8e546888af2b4e7f68b80bd186c7940be359ae0
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
module.exports = function () {
4
var arr = [1, 2, 3, 4, 5, 6];
5
if (typeof arr.fill !== 'function') return false;
6
return String(arr.fill(-1, -3)) === '1,2,3,-1,-1,-1';
7
};