IOTConnect-Web/node_modules/es6-map/valid-map.js

9 lines
153 B
JavaScript
Raw Normal View History

2024-05-09 01:49:52 +00:00
'use strict';
var isMap = require('./is-map');
module.exports = function (x) {
if (!isMap(x)) throw new TypeError(x + " is not a Map");
return x;
};