reisarod's picture
Upload folder using huggingface_hub
5fae594 verified
raw
history blame contribute delete
358 Bytes
'use strict';
var util = {};
/*
* util.inherits for browsers
*/
util.inherits = function inherits (ctor, superCtor) {
ctor.__super__ = superCtor;
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
};
module.exports = util;