Files
peya-nodejs-pool/node_modules/es6-weak-map/valid-weak-map.js
Mark Allen Evans bd7256ec7c checkpoint
2020-10-13 00:35:14 +00:00

9 lines
186 B
JavaScript

"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;
};