9 lines
153 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:37:43 +08: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;
};