DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
241 Bytes
module.exports = function() {
var result = {};
for (var prop in this) {
if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map|wrap)$/)) continue;
result[prop] = this[prop];
}
return result;
};