Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
262 Bytes
import isObject from './isObject';
export default (tempObject: object) => {
const prototypeCopy =
tempObject.constructor && tempObject.constructor.prototype;
return (
isObject(prototypeCopy) && prototypeCopy.hasOwnProperty('isPrototypeOf')
);
};