blob: 532549dc4f0351fd1a86e3ed9612a5f04c73d976 [file] [log] [blame] [edit]
export function is(targetPrototype, x){
if (arguments.length === 1) return _x => is(targetPrototype, _x)
return (
x != null && x.constructor === targetPrototype ||
x instanceof targetPrototype
)
}