Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(iterable) {
super(iterable);
// prettier-ignore
this.__native = new Map(
iterable == null
? []
: isCollection(iterable) || isNative(iterable)
? iterable.entries()
: isPlainObj(iterable)
? entries(iterable)
: iterable,
);
}
this.__constructorTransform = obj => entries(obj);
}