projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e8b0160ec097d325b33965e05fb4d88911d01432
[platform/framework/web/crosswalk-tizen.git]
/
1
// Exports true if environment provides native `Set` implementation,
2
// whatever that is.
3
4
'use strict';
5
6
module.exports = (function () {
7
if (typeof Set === 'undefined') return false;
8
return (Object.prototype.toString.call(Set.prototype) === '[object Set]');
9
}());