Socket
Socket
Sign inDemoInstall

atomicassets

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atomicassets - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

10

build/API/Explorer/index.js

@@ -12,3 +12,11 @@ "use strict";

for (const key of dataKeys) {
dataFields['data.' + key] = data[key];
if (typeof data[key] === 'number') {
dataFields['data:number.' + key] = data[key];
}
else if (typeof data[key] === 'boolean') {
dataFields['data:bool.' + key] = data[key];
}
else {
dataFields['data.' + key] = data[key];
}
}

@@ -15,0 +23,0 @@ return Object.assign({}, options, dataFields);

2

package.json

@@ -12,3 +12,3 @@ {

"license": "MIT",
"version": "1.2.0",
"version": "1.2.1",
"main": "build/index.js",

@@ -15,0 +15,0 @@ "types": "build/index.d.ts",

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