lepu-test-platform-web/node_modules/es6-map/valid-map.js

9 lines
153 B
JavaScript
Raw Permalink Normal View History

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