9 lines
186 B
JavaScript
Raw Normal View History

2025-06-04 09:42:48 +08:00
"use strict";
var isWeakMap = require("./is-weak-map");
module.exports = function (value) {
if (!isWeakMap(value)) throw new TypeError(value + " is not a WeakMap");
return value;
};