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

titanium

Package Overview
Dependencies
Maintainers
3
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

titanium - npm Package Compare versions

Comparing version 7.0.0-beta5 to 7.0.0-beta6

2

package.json
{
"name": "titanium",
"version": "7.0.0-beta5",
"version": "7.0.0-beta6",
"author": "TiDev, Inc. <npm@tidev.io>",

@@ -5,0 +5,0 @@ "description": "Command line interface for building Titanium SDK apps",

@@ -299,3 +299,4 @@ import chalk from 'chalk';

return reject(err);
} else if (newData) {
}
if (newData && typeof newData === 'object' && newData.type) {
data = newData;

@@ -313,5 +314,8 @@ }

data.result = await new Promise(resolve => {
// call the function
data.args.push((...args) => resolve(args));
data.fn.apply(data.ctx, data.args);
// call the hooked function
data.fn.call(
data.ctx,
...data.args,
(...args) => resolve(args)
);
});

@@ -318,0 +322,0 @@ }

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