projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b14f461d941ee56686f57459bce240e44b5780c3
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var indexOf = require('./e-index-of')
4
5
, every = Array.prototype.every
6
, isFirst;
7
8
isFirst = function (value, index) {
9
return indexOf.call(this, value) === index;
10
};
11
12
module.exports = function () { return every.call(this, isFirst, this); };