wazuh-kibana-app/node_modules/es6-map/valid-map.js
2016-06-28 19:30:19 -07:00

9 lines
153 B
JavaScript

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