208c6613cff844d69bf3e52d4bafb2ac7c689675
[platform/framework/web/crosswalk-tizen.git] /
1 // Exports true if environment provides native `Map` implementation,
2 // whatever that is.
3
4 'use strict';
5
6 module.exports = (function () {
7         if (typeof Map === 'undefined') return false;
8         return (Object.prototype.toString.call(Map.prototype) === '[object Map]');
9 }());