Socket
Socket
Sign inDemoInstall

@springernature/global-javascript

Package Overview
Dependencies
0
Maintainers
13
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.1 to 3.0.2

3

HISTORY.md
# History
## 3.0.2 (2021-04-15)
* Replace use of for of loop to generate smaller transpiled bundle
## 3.0.1 (2020-11-19)

@@ -4,0 +7,0 @@ * Bump to get latest version package-manager with updated post install script

2

package.json
{
"name": "@springernature/global-javascript",
"version": "3.0.1",
"version": "3.0.2",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Globally shared Javascript helpers",

@@ -8,4 +8,6 @@ const makeArray = iterable => {

for (const item of iterable) {
list.push(item);
for (const key in iterable) {
if (Object.prototype.hasOwnProperty.call(iterable, key)) {
list.push(iterable[key]);
}
}

@@ -12,0 +14,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc