Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@babel/helpers

Package Overview
Dependencies
Maintainers
5
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/helpers - npm Package Compare versions

Comparing version 7.0.0-beta.52 to 7.0.0-beta.53

17

lib/helpers.js

@@ -604,4 +604,4 @@ "use strict";

helpers.objectWithoutProperties = () => _template().default.program.ast`
export default function _objectWithoutProperties(source, excluded) {
helpers.objectWithoutPropertiesLoose = () => _template().default.program.ast`
export default function _objectWithoutPropertiesLoose(source, excluded) {
if (source == null) return {};

@@ -619,2 +619,15 @@

return target;
}
`;
helpers.objectWithoutProperties = () => _template().default.program.ast`
import objectWithoutPropertiesLoose from "objectWithoutPropertiesLoose";
export default function _objectWithoutProperties(source, excluded) {
if (source == null) return {};
var target = objectWithoutPropertiesLoose(source, excluded);
var key, i;
if (Object.getOwnPropertySymbols) {

@@ -621,0 +634,0 @@ var sourceSymbolKeys = Object.getOwnPropertySymbols(source);

10

package.json
{
"name": "@babel/helpers",
"version": "7.0.0-beta.52",
"version": "7.0.0-beta.53",
"description": "Collection of helper functions used by Babel transforms.",

@@ -11,9 +11,9 @@ "author": "Sebastian McKenzie <sebmck@gmail.com>",

"dependencies": {
"@babel/template": "7.0.0-beta.52",
"@babel/traverse": "7.0.0-beta.52",
"@babel/types": "7.0.0-beta.52"
"@babel/template": "7.0.0-beta.53",
"@babel/traverse": "7.0.0-beta.53",
"@babel/types": "7.0.0-beta.53"
},
"devDependencies": {
"@babel/helper-plugin-test-runner": "7.0.0-beta.52"
"@babel/helper-plugin-test-runner": "7.0.0-beta.53"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc