mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame
273 Bytes
// Exports true if environment provides native `WeakMap` implementation, whatever that is.
"use strict";
module.exports = (function () {
if (typeof WeakMap !== "function") return false;
return Object.prototype.toString.call(new WeakMap()) === "[object WeakMap]";
}());