mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
186 Bytes
"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;
};