How to use the @babel/runtime-corejs2/core-js/object/keys function in @babel/runtime-corejs2

To help you get started, we’ve selected a few @babel/runtime-corejs2 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ashleyw / react-sane-contenteditable / lib / esm / utils.js View on Github external
function reduceTargetKeys() {
  var target = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  var predicate = arguments.length > 1 ? arguments[1] : undefined;
  return _Object$keys(target).reduce(predicate, {});
}