IOTConnect-Web/node_modules/es6-map/test/is-implemented.js

15 lines
304 B
JavaScript
Raw Normal View History

2024-05-09 01:49:52 +00:00
'use strict';
var global = require('es5-ext/global')
, polyfill = require('../polyfill');
module.exports = function (t, a) {
var cache;
a(typeof t(), 'boolean');
cache = global.Map;
global.Map = polyfill;
a(t(), true);
if (cache === undefined) delete global.Map;
else global.Map = cache;
};