mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-19 12:38:34 -05:00
9 lines
186 B
JavaScript
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;
|
|
};
|